10 Commonly Asked JavaScript Interview Question

js Interview questions you must be aware of

Ranok Raihan
May 10, 2021

what is the deference between double equal (==) and triple equal (===)

in javascript they both are comparison operator . that means they are used to compare to variable. the deference between them is double equal compare the values of two variable but ignore the type of them. but the triple equal compare value as well as the type. see the example.

--

--