crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Node.js Assert Code
Question Posted on 07 May 2024Home >> 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




.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Parts of Node.js

Install Node.js Linux

Node.js First Example

Node.js Globals

Node.js DNS






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap