la consola El método group() es una interfaz de programación de aplicaciones incorporada del módulo de la consola que se utiliza para imprimir el contenido pasado en un estilo agrupado. Indica el inicio de un grupo de mensajes. Para finalizar este grupo podemos usar console. método groupEnd() .
Sintaxis:
console.group([label]);
Parámetros: este método acepta solo un parámetro como se mencionó anteriormente y se describe a continuación:
- etiqueta: La etiqueta para el grupo que está agrupando en la consola. Este parámetro no es obligatorio, es opcional y se puede ejecutar en la consola. método group() sin pasar el parámetro de etiqueta.
Valores paramétricos:
- Tipo: Cuerda
- Requerido: Opcional
Valor devuelto: este método no devuelve nada más que agrupar el contenido en la consola con una etiqueta si se proporciona de otra manera simplemente sin etiqueta.
Los siguientes ejemplos ilustran el uso de la consola. método group() en Node.js.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // console.group() method // This code example demonstrate the // method without parameter // Accessing console module const console = require('console'); console.log("GeeksforGeeks"); console.log(); // Creating First Group console.group(); // Printing First Statement of Group console.log("1st print from the first group"); // Printing Second Statement of Group console.log("2nd print from the first group"); // Ending the group console.groupEnd(); console.log();
Ejecute el archivo index.js usando el siguiente comando:
node index.js
Salida de la consola:
GeeksforGeeks 1st print from the first group 2nd print from the first group
Ejemplo 2:
index.js
// Node.js program to demonstrate the // console.group() method // This code example demonstrate the method // with parameter and nested groups // Accessing console module const console = require('console'); console.log("GeeksforGeeks "); console.log("=========================="); console.log(); // Creating First group console.group("This is the starting main group"); console.log(); // Printing First statement of Group console.log("1st group and not from any nested group"); console.log(); // Creating nested group in First group console.group("Starting of the 1st Nested group"); // Printing 1st line of nested group console.log("Hello Geeks for Geeks from " + "1st Main Nested group"); // Printing 2nd line of nested group console.log("Computer Science Portal(GeeksforGeeks)" + " from 1st Main Nested group"); // Ending of the first nested group console.groupEnd(); console.log(); console.log(); // Creating second nested group console.group("Starting of the 2nd Main Nested group"); // Printing 1st line of second nested group console.log("Hello from 2nd Main Nested group"); // Printing 2nd line of second nested group console.log("Hello from 2nd Main Nested group"); // Ending of the second nested group console.groupEnd(); console.log(); // Printing last line of the group console.log("Now Main group will end"); console.log(); // Calling groupEnd() method (It is used to // end the group for more understanding // the group method) console.groupEnd(); // Printing from outside the Main group console.log("This the Hello from GeeksforGeeks" + " from outside the Main Group"); console.log(); console.log("===========================");
Salida de la consola:
GeeksforGeeks ========================== This is the starting main group 1st group and not from any nested group Starting of the 1st Nested group Hello Geeks for Geeks from 1st Main Nested group Computer Science Portal(GeeksforGeeks) from 1st Main Nested group Starting of the 2nd Main Nested group Hello from 2nd Main Nested group Hello from 2nd Main Nested group Now Main group will end This the Hello from GeeksforGeeks from outside the Main Group ===========================
Referencia: https://nodejs.org/api/console.html#console_console_group_label
Publicación traducida automáticamente
Artículo escrito por aditya32123 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA