PBPratik Bagmareinpratikbagmare.hashnode.dev·Sep 24, 2021 · 5 min readData types in JavaScriptJavaScript is loosely typed and dynamic language which means that the datatype of variable need not to be specified because it is dynamically identified by JavaScript engine which is not the case with programming languages like C, C++, Java where the...00
PBPratik Bagmareinpratikbagmare.hashnode.dev·Sep 24, 2021 · 8 min readArray and its CRUD using array methods...What is an array in JavaScript ? Array is a list-like data structure in JavaScript which store elements and is represented with a pair of square brackets[ ]. The elements stored in an array may or may not be of same data type.The data type of array i...00