URL.username es una interfaz de programación de aplicaciones (API) incorporada de la clase URL dentro de Node.JS.
La API URL.username se utiliza para obtener y establecer el nombre de usuario de la URL.
Syntax: url.username url : It is an object created by URL constructor.
Ejemplo 1: (Obtener el nombre de usuario de la URL)
javascript
//Creating an URL_1 object with URL constructor. const URL_1 = new URL("https://ashish:ashish123@www.geeksforgeeks.org"); //Getting username of above created URL_1 object console.log(URL_1.username);
Producción:
Ejemplo 2: (Configuración del nombre de usuario de la URL)
javascript
//Creating an URL_1 object with URL constructor. const URL_1 = new URL("https://ashish:ashish123@www.geeksforgeeks.org/geeks"); //Getting username of above created URL_1 object console.log("Before changing username URL is:") console.log(URL_1.href); console.log("username: "+ URL_1.username); //Setting URL_1 username to ashu URL_1.username = "ashu"; //Getting username after setting it to ashu console.log("After changing username URL is:") console.log(URL_1.href); console.log("username: "+ URL_1.username);
Producción:
Publicación traducida automáticamente
Artículo escrito por AshishkrGoyal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA