ATAJAY THOPATEinajaythopate.dev·May 26, 2023 · 1 min readJavaScript VariablesA variable is a label that references a value like a number or string. Before using a variable, you need to declare it. JavaScript Variables Type 1 . Var 2 .let 3. const00
ATAJAY THOPATEinajaythopate.dev·May 25, 2023 · 1 min readWhat is JavaScriptJavaScript is a programing language initially designed to interact with web pages. in web browsers JavaScript consists of three main parts. 1 ECMAScript provides the core functionality. 2 Document Object Model. 3 Browser Object Model provides the bro...00
ATAJAY THOPATEinajaythopate.dev·Feb 26, 2023 · 1 min readFunctionfunction sum(){ let num1 = 5; let num2 = 10; console.log("addition of two number are :",num1+num2); } sum(); output :addition of two numberare: 15 Function with parameters function sum( value1 + value2){ console.log("addition of two numbe...00
ATAJAY THOPATEinajaythopate.dev·Feb 24, 2023 · 1 min readJavaScript Array Methods. arr.push() – adds items to the end Example const fruits = ["Banana", "Orange", "Apple", "Mango"]; fruits.push("Kiwi"); Result: Banana,Orange,Apple,Mango,Kiwi . arr.pop() -extracts an item from the end Example const fruits = ["Banana", "Oran...00
ATAJAY THOPATEinajaythopate.dev·Nov 23, 2022 · 1 min readgrid-areaThe grid-area CSS property is a shorthand that specifies the location and the size of a grid item in a grid layout by setting the value grid-row-start, grid-column-start, grid-row-end and grid-column-end in one declaration. Constituent properties ...00