Hi Guest

MobileUser

1 HomePage 1 Jobs 1 WalkIn 1Articles  

Cat Exam

 :) Latest Topic
general knowledge
ASP.NET
VB.NET
SQL Query
UDDI
CLASS
JavaScript Questions
SharePoint Interview
SilverLight
WCF
 AngularJS
 :) Hot Jobs
 
 :) Latest Articles


  

 


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
0
0



 
 Input Your Comments Or suggestions(If Any)
 Name
 Email(optional)
 Comments


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 |