Quick actions

cmd+k|ctrl+k

Navigation

Languages

Assignment operator

Snippet info

Language

JavaScript

Visibility

public

Author

tulangrusuk.ku

Created

2020-07-02T20:09:12Z

Updated

2020-07-02T20:15:10Z

let y = 10;
let x = 25;

x *= y;
console.log(x);

x -= y;
console.log(x);

// x += y;  artinya -> x = x + y;
// x -= y;  artinya -> x = x - y;
// x *= y;  artinya -> x = x * y;
// x /= y;  artinya -> x = x / y;
// x %= y;  artinya -> x = x % y;
INFO