java-script:console-table-error-assert-group
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java-script:console-table-error-assert-group [2023/08/09 20:24] – removed - external edit (Unknown date) 127.0.0.1 | java-script:console-table-error-assert-group [2023/08/09 20:33] (current) – odefta | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Java Script Console Error, Table, Assert, Group ====== | ||
+ | ===== Console table ===== | ||
+ | |||
+ | Along with console.log, | ||
+ | Example: | ||
+ | <code javascript ConsoleTable.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | const people = [ | ||
+ | { name: ' | ||
+ | { name: ' | ||
+ | { name: ' | ||
+ | ]; | ||
+ | |||
+ | console.table(people); | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | The output is: | ||
+ | {{: | ||
+ | |||
+ | To filter some of the columns we can use console.table(people, | ||
+ | <code javascript ConsoleTableFilter.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | const people = [ | ||
+ | { name: ' | ||
+ | { name: ' | ||
+ | { name: ' | ||
+ | ]; | ||
+ | |||
+ | console.table(people, | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ===== Console error ===== | ||
+ | |||
+ | **console.error** can be used to display an error in the console. It will be displayed with a red x in front of it. | ||
+ | \\ If we want to display the stack trace showing where the error was logged we can use **Error(...)**: | ||
+ | |||
+ | <code javascript> | ||
+ | function myFunction() { | ||
+ | console.error(Error(' | ||
+ | } | ||
+ | |||
+ | myFunction(); | ||
+ | |||
+ | </ | ||
+ | |||
+ | When this code is run, it will log the error message " | ||
+ | |||
+ | ===== Console assert ===== | ||
+ | |||
+ | The **console.assert()** method writes an error message to the console if the assertion is false. \\ | ||
+ | **If the assertion is true, nothing happens.** | ||
+ | |||
+ | Syntax: | ||
+ | < | ||
+ | console.assert(assertion, | ||
+ | </ | ||
+ | |||
+ | Params: | ||
+ | * **assertion**: | ||
+ | * **message**: | ||
+ | * **...optionalParams**: | ||
+ | |||
+ | Examples: | ||
+ | <code javascript> | ||
+ | console.assert(5 > 10, '5 is not greater than 10'); // This will log the message because the assertion is false | ||
+ | </ | ||
+ | |||
+ | <code javascript> | ||
+ | function add(a, b) { | ||
+ | console.assert(typeof a === ' | ||
+ | return a + b; | ||
+ | } | ||
+ | add(' | ||
+ | </ | ||
+ | |||
+ | <code javascript> | ||
+ | function divide(a, b) { | ||
+ | console.assert(b !== 0, ' | ||
+ | return a / b; | ||
+ | } | ||
+ | |||
+ | divide(10, 0); // This will log: " | ||
+ | </ | ||
+ | |||
+ | <note warning> | ||
+ | While you can technically leave calls to console.assert() in **production code**, it's usually considered best practice to **remove or disable** such debugging and diagnostic code before deploying to production. \\ | ||
+ | |||
+ | In some browsers, calls to **console.assert()** (and other console methods) may have no effect in production, depending on user settings and browser configuration. In others, these calls might still generate output in the console, which could be seen by users who have their developer tools open. This can potentially leak information about the inner workings of your code, which might be of interest to malicious actors. \\ | ||
+ | </ | ||
+ | |||
+ | <note tip> | ||
+ | One common approach to handle this is to have a build step in your deployment process that removes or comments out calls to console.assert() (and other debugging code) as part of the **[[java-script: | ||
+ | </ | ||
+ | |||
+ | ===== Console group ===== | ||
+ | |||
+ | **console.group()** and **console.groupEnd()** are used in JavaScript to **group together related log messages**. \\ You can also nest groups inside other groups, creating a hierarchical view in the console. | ||
+ | |||
+ | Simple example: | ||
+ | < | ||
+ | console.group(" | ||
+ | console.log(" | ||
+ | console.log(" | ||
+ | console.groupEnd(); | ||
+ | </ | ||
+ | |||
+ | Output: | ||
+ | {{: | ||
+ | |||
+ | Nested group example: | ||
+ | < | ||
+ | console.log(" | ||
+ | |||
+ | console.group(" | ||
+ | console.log(" | ||
+ | |||
+ | console.group(" | ||
+ | console.log(" | ||
+ | console.groupEnd(); | ||
+ | |||
+ | console.group(" | ||
+ | console.log(" | ||
+ | console.groupEnd(); | ||
+ | |||
+ | console.groupEnd(); | ||
+ | |||
+ | console.log(" | ||
+ | </ | ||
+ | |||
+ | Output: | ||
+ | {{: | ||
+ | |||
+ | < | ||
+ | Using **console.groupCollapsed()** instead of console.group() can create a collapsible group that is closed by default. | ||
+ | </ |