RDRittik Dasinreeek.hashnode.dev·Oct 20, 2022 · 2 min readA Beginner's Guide To "NAN"What is "NAN"? NAN stands for "Not A Number". What does it mean? It simply means the value which is not a number is NAN. There are different operations in JavaScript which return NAN . We will try to explore some of them in this article. Data Type Of...00
RDRittik Dasinreeek.hashnode.dev·Oct 18, 2022 · 4 min readA Beginners' Guide to ArrayWhat is an Array? An Array is a simple data structure that contains multiple values. Array in JavaScript can store values with any types of datatypes. Creating an Array: Syntax: const arrayName = [element1, element2, element3]; Example: const coun...00