Skip to content

Commit 6ac613c

Browse files
committed
add textbooks
1 parent 0345aec commit 6ac613c

10 files changed

Lines changed: 14 additions & 0 deletions
2.74 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
944 KB
Binary file not shown.
6.13 MB
Binary file not shown.

Snippets/Misc/Thanos.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const willTanosKillMe = (name, Kills, Safe) => {
2+
if(name.length%2 === 0){
3+
Kills();
4+
}else{
5+
Safe()
6+
}
7+
}
8+
9+
willTanosKillMe("SohamS", () => console.log("DedXD"), () => console.log("Safe"));

Snippets/Misc/printAfterDelay.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const printAfterDelay = (msg, delay) => {
2+
setTimeout(() => console.log(msg), delay);
3+
}
4+
5+
printAfterDelay("soham", 5000)

0 commit comments

Comments
 (0)