Exercise 2.4

This commit is contained in:
Karan 2021-11-24 19:16:01 +05:30 committed by GitHub
parent e315c2e95b
commit 49dea4f4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
Chapter 2/Exercise 2.4 Normal file
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);