MKManish Kumarinmanishtanwar.hashnode.dev·Dec 17, 2019003_Javascript_DataTypesJavascript is a dynamically typed programming language, meaning that there are data types but variables are not bound to any of them. Hence, a variable can at one moment be a number and at another be a string. There are eight basic data types in Java...00
MKManish Kumarinmanishtanwar.hashnode.dev·Dec 15, 2019002_Javascript-VariablesA variable is a "named storage" location for data. 1.Creating a variable in JS (Declaring a variable). let myVariable; 2.Use assignment operator ( = ) to store data into the variable. myVariable = 5; Now the value 5 is stored in variable "myVariable"...00
MKManish Kumarinmanishtanwar.hashnode.dev·Dec 15, 2019001_Javascript-IntroductionInitially named "LiveScript". Has nothing in relation to JAVA. Executed using a special program called the Javascript Engine. Eg: v8 in chrome, spider monkey in Firefox. JS Engines parses the script and compiles the script to the machine language. S...00