This commit is contained in:
Karan
2021-11-25 20:25:58 +05:30
parent 65c4b167af
commit 1a19d738a9
10 changed files with 0 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
let a = 4;
let b = 11;
let c = 21;
a = a + b;
a = a / c;
c = c % b;
console.log(a, b, c);