diff --git a/Students/Nishan/DOM.html b/Students/Nishan/DOM.html new file mode 100644 index 0000000..48e0823 --- /dev/null +++ b/Students/Nishan/DOM.html @@ -0,0 +1,33 @@ + + + + + + Document + + + + + + + \ No newline at end of file diff --git a/Students/Nishan/bag.jpg b/Students/Nishan/bag.jpg new file mode 100644 index 0000000..551c8ce Binary files /dev/null and b/Students/Nishan/bag.jpg differ diff --git a/Students/Nishan/dom2.html b/Students/Nishan/dom2.html new file mode 100644 index 0000000..39ec71b --- /dev/null +++ b/Students/Nishan/dom2.html @@ -0,0 +1,22 @@ + + + + + + Document + + + + + + \ No newline at end of file diff --git a/Students/Nishan/for each.js b/Students/Nishan/for each.js new file mode 100644 index 0000000..d23b00b --- /dev/null +++ b/Students/Nishan/for each.js @@ -0,0 +1,11 @@ +//foreach loop is used to iterate over the array and perform a function on each element of the array +const MarbalHeros=["Iron Man","Captain America","Thor","Hulk","Black Widow","Hawkeye"]; +MarbalHeros.forEach(function(hero){ + console.log(hero); +}) + +//foreach loop is used to iterate over the array and perform a function on each element of the array +const numbers=[1,2,3,4,5]; +numbers.forEach(function(number){ + console.log(number*2); +}) \ No newline at end of file diff --git a/Students/Nishan/forin & forof.js b/Students/Nishan/forin & forof.js new file mode 100644 index 0000000..2c30295 --- /dev/null +++ b/Students/Nishan/forin & forof.js @@ -0,0 +1,42 @@ +// forin give only name of the key +const letslearnUsersArray=[{ + name:"saugat Bagale", + age:23, + isLogin:true +},{ + name:"Nishant", + age:24, + isLogin:false +}, +{ + name:"Aakriti", + age:22, + isLogin:true +}, +{ + name:"subin", + age:19, + isLogin:false +}, +{ + name:"kamala", + age:19, + isLogin:true +}, +{ + name:"suman", + age:19, + isLogin:false +}, + +] +//forin give only name of the key +for(let key in letslearnUsersArray){ + console.log(letslearnUsersArray[key].name) +} +//for of give only name +for(let key of letslearnUsersArray){ + console.log(key.name) +} + + diff --git a/Students/Nishan/head phone.jpg b/Students/Nishan/head phone.jpg new file mode 100644 index 0000000..81ef923 Binary files /dev/null and b/Students/Nishan/head phone.jpg differ diff --git a/Students/Nishan/html+js copy 2.html b/Students/Nishan/html+js copy 2.html new file mode 100644 index 0000000..14806ae --- /dev/null +++ b/Students/Nishan/html+js copy 2.html @@ -0,0 +1,35 @@ + + + + + + Document + + + + + + + + \ No newline at end of file diff --git a/Students/Nishan/html+js.html b/Students/Nishan/html+js.html new file mode 100644 index 0000000..14806ae --- /dev/null +++ b/Students/Nishan/html+js.html @@ -0,0 +1,35 @@ + + + + + + Document + + + + + + + + \ No newline at end of file diff --git a/Students/Nishan/jacket.jpg b/Students/Nishan/jacket.jpg new file mode 100644 index 0000000..3fd5d77 Binary files /dev/null and b/Students/Nishan/jacket.jpg differ diff --git a/Students/Nishan/luckeydraw.html b/Students/Nishan/luckeydraw.html new file mode 100644 index 0000000..4e62d81 --- /dev/null +++ b/Students/Nishan/luckeydraw.html @@ -0,0 +1,100 @@ + + + + + + lucky draw slot machine + + + +
+ +

Lucky Draw Slot Machine

+ $100 +
+
πŸ’
+
πŸ‹
+
πŸ‡
+
+ +
+
+ + + + \ No newline at end of file diff --git a/Students/Nishan/mobile.jpg b/Students/Nishan/mobile.jpg new file mode 100644 index 0000000..d7406c0 Binary files /dev/null and b/Students/Nishan/mobile.jpg differ diff --git a/Students/Nishan/project.html b/Students/Nishan/project.html new file mode 100644 index 0000000..679eb06 --- /dev/null +++ b/Students/Nishan/project.html @@ -0,0 +1,178 @@ + + + + +Mini Shop + + + + +
πŸ› Mini Daraz Store
+ +
+ + +
+ + +
+

Cart

+
+
Total: Rs 0
+
+ +
+ + + + + \ No newline at end of file diff --git a/Students/Nishan/shoes.jpg b/Students/Nishan/shoes.jpg new file mode 100644 index 0000000..b6eb96d Binary files /dev/null and b/Students/Nishan/shoes.jpg differ diff --git a/Students/Nishan/task 4.html b/Students/Nishan/task 4.html new file mode 100644 index 0000000..e69de29 diff --git a/Students/Nishan/task4.html b/Students/Nishan/task4.html new file mode 100644 index 0000000..d224d3a --- /dev/null +++ b/Students/Nishan/task4.html @@ -0,0 +1,112 @@ + + + + + + + Document + + + + +

Click the button to see a motivational quote!

+ + + \ No newline at end of file diff --git a/Students/Nishan/try.html b/Students/Nishan/try.html new file mode 100644 index 0000000..c44cdd2 --- /dev/null +++ b/Students/Nishan/try.html @@ -0,0 +1,48 @@ + + + + + + counter + + + +

0

+ + + + + + + + \ No newline at end of file diff --git a/Students/Nishan/watch.jpg b/Students/Nishan/watch.jpg new file mode 100644 index 0000000..f21d74c Binary files /dev/null and b/Students/Nishan/watch.jpg differ