DJdipesh joshiindipeshjoshi4.hashnode.dev·Jul 18, 2023 · 3 min readJavaScript Control Statements & LoopsThe Article Conduct Below Topic If. Else loop Switch Statement While Loop Do-While Loop For Loop Practise If .... Else Loop The if statement executes a statement if a specified condition is truthy. If the condition is false, another statement...00
DJdipesh joshiindipeshjoshi4.hashnode.dev·Jul 15, 2023 · 8 min readJavaScript BasicThe Topic Which is Covered in This Article Variable Variable name convention Rules Hoisting Variable Scope variable scope block scope global scope Datatypes in Javascript What Is NaN? Type Of Operators Difference With Null vs Undef...00
DJdipesh joshiindipeshjoshi4.hashnode.dev·Mar 21, 2023 · 2 min readVariables & Primitives vs Non-primitivePRIMITIVE VS NON -PRIMITIVE PRIMITIVES ARE COPIED BY THEIR VALUE REFERENCE(non-primitive) ARE COPIED BY THEIR ADRESS/REFERENCES primitive value types => string , number, boolean, undefined, null non-primitive(reference type) types => array ,objec...00
DJdipesh joshiindipeshjoshi4.hashnode.dev·Mar 2, 2023 · 2 min readJavaScript Math ObjectMath Object 1. pi value property it gives constant famous value as per name console.log(Math.PI); //OUTPUT = 3.14159265358... 2. Math. pow() Math.pow(x, y) returns the value of x to the power of y console.log(Math.pow(2, 3)); //2*2*2 ...00
DJdipesh joshiindipeshjoshi4.hashnode.dev·Jan 3, 2023 · 9 min readCSS Flexboxthere are many flex box property let me show you one by one Flexbox is advanced version of display: inline-block Not so Advanced but also make very flexible and easy work don by display:Flex lets take example and explain every functionality of flex...00