Skip to content

Commit

Permalink
file added
Browse files Browse the repository at this point in the history
  • Loading branch information
pritum-4 committed Apr 4, 2024
1 parent 23de6d9 commit 55532d0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 01_basics/04_opearyions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
let str1 = "Prayas"
let str2 = "Neon"
let str3 = str1+str2;
console.log(str3);
console.log(1+"2");
console.log("1"+2);
console.log("1"+"2");
console.log(+true);
console.log(+"");
//not good to use
let num1,num2,num3
num1=num2=num3=2+2
console.log(num1,num2,num3)

0 comments on commit 55532d0

Please sign in to comment.