Quick actions

cmd+k|ctrl+k

Navigation

Languages

operator assignment

Snippet info

Language

JavaScript

Visibility

public

Author

ameliafadhillah57

Created

2020-05-16T17:42:47Z

Updated

2020-05-16T17:42:47Z

console.log("Hello World!");
let x = 5;
let y = 25;
 


a = x % y; // artinya -> x = x % y;

console.log(a);

let c = 2;
let d = 25;
 


f = c % d; 

console.log(f);


INFO