Exercise 2.4

This commit is contained in:
Karan
2021-11-24 19:16:01 +05:30
committed by GitHub
parent e315c2e95b
commit 49dea4f4e5
+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);