Question from the Javascript test

Compare two numbers in Javascript

Medium

What's the exit?

let a = 8;
let b = new Number(8);
let c = 8;

console.log(a == b);
console.log(a === b);
console.log(b === c);
Author: Vincent CotroStatus: PublishedQuestion passed 206 times
Edit
3
Community EvaluationsNo one has reviewed this question yet, be the first!