#coding
Read more stories on Hashnode
Articles with this tag
An array is a special variable, which can hold more than one value array are special type of object typeof array "object" it contain ordered list of...
An object is an collection value and key pair. Creating Objects we use curley brackets {} or object literal to create object. ex-let user = { name:...
Function Declaration Function Expression Anonymous Function Expression Arrow function Function Declaration When a function is starting with keyword...
Sometimes In our program we want to repeat some action multiple times. for-ex I want to console.log("Hello world") 4 times. The hard way to do that...
Alert Alert is used to display a message in the browser. Confirm Confirm is used to ask user consent before perform any action. It shows a message...