About Lesson
typeof operator:-
ये operator debugging के लिए बहुत helpful होता है इस operator से किसी भी variable के data type का पता लगाया जा सकता है इस operator का प्रयोग करना बहुत ही आसन होता है आप typeof लिख कर उसके आगे वो वैल्यू या variable लिखते है जिसका data type आपको पता लगाना होता है
example
str=”hello world”;
document.write(typeof str);
typeof operator:-
This operator is very helpful for debugging. The data type of any variable can be found out with this operator. It is very easy to use this operator. You write typeof and then write the value or variable whose data type you want. have to find out
example
str=”hello world”;
document.write(typeof str);