Quick actions

cmd+k|ctrl+k

Navigation

Languages

Assignment Operator

Snippet info

Language

JavaScript

Visibility

public

Author

adislamay19

Created

2020-04-24T04:20:58Z

Updated

2020-04-24T04:27:13Z

        let x = 10;
    let y = 5
     
    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;
     
    console.log(x);
    /*
    let x = 10;
    let y = 5
     
    x += y;
    // x=x+y
     
    console.log(x)
    */
INFO