Hi Guest 1 HomePage 1 Jobs 1 WalkIn 1Articles  

 :) Latest Topic
Node.js Tutorial
Parts of Node.js
Features of Node.js
Install Node.js Windows
Install Node.js Linux
Node.js First Example
Node.js Console
Node.js REPL
Node.js NPM
Node.js CL Options1
Node.js CL Option2
Node.js Globals
Node.js OS
Node.js Timer
Node.js Errors
Node.js DNS
Node.js Net
Node.js Crypto
Node.js TLS/SSL
Node.js Debugger
Node.js Process
Node.js Process Example
Node.js Process Example2
Node.js Child Process
Child Process EXEC
Child Process SPAWN
Child Process Fork
Node.js Buffers
Node.js Streams
Node.js Reading Stream
Node.js Writing Stream
Node.js Piping Stream
Node.js Chaining Streams
Node.js File System Part1
Node.js File System Part2
Node.js File System Part3
Node.js Path
Node.js StringDecoder
Node.js Query String
Node.js ZLIB
Node.js Assertion
Node.js V8
Node.js Callbacks
Node.js Events
Node.js Punycode
Node.js TTY
Node.js Web Module
Node.js Upload Files
Node.js Email Send
Node.js BuiltIn Modules
Node.js Assert Code
Node.js Assert Function
Node.js console.time()
Node.js console.table()
Node.js DNS Code
Node.js cipher.final()
Node.js URL.hash API
Node.js URL.host API
Node.js URL.origin API
 


  

 
Node.js Assert Code
Question Posted on 07 May 2024

Home >> Tutorial >> Node.js Tutorial >> Node.js Assert Code


Node.js Assert Code

Node.js Assert Code


When we say about the Assert module there are bunch of facilities which are useful for the all assertion function. And assert modules provides a set of assertion functions to verifying invariants. And if the condition is true it will output nothing else an assertion error is given by the console.

And to use this assert module we use the below command:-


npm install assert


Note:-Here installation is optional step as Assert can be inbuilt Node.js module.

And to import module we use the below command:-


const assert = require("assert");


Node.js Assert Example:-Save the below code in file and save as AssertExample.js.


console.clear()
const assert = require('assert');

let a = 5;
let b = 6;

try {

// Checking condition
assert(a == b);
}
catch {

// Error output
console.log("----------Output-----------");
console.log(
`${a} is not equal to ${b}`);
}


And to run above AssertExample.js file use below code line.


node AssertExample.js



Example 2:-
Node.js example 2 to check try catch and error with assertion function and get the error while doing some code.


console.clear()
const assert = require('assert');

let x = 4;
let y = 5;

assert(x > y);


Once you run the above code in Node.js you will get the below error as you have not used try catch blocked.

Node.js Assert Error





Other Important Questions
Parts of Node.js
Install Node.js Linux
Node.js First Example
Node.js Globals
Node.js DNS







 
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |