filmov
tv
Subtraction in Javascript
Показать описание
// Subtraction in Javascript
let x=10; // assign the value 10 to x variable
let y=5; // assign the value 5 to y variable
let z = x - y; // assign the value 5 to z (10-5)
let x=10; // assign the value 10 to x variable
let y=5; // assign the value 5 to y variable
let z = x - y; // assign the value 5 to z (10-5)