2021-11-24 19:16:01 +05:30

8 lines
90 B
Groff

let a = 4;
let b = 11;
let c = 21;
a = a + b;
a = a / c;
c = c % b;
console.log(a, b, c);