-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.js
45 lines (35 loc) · 971 Bytes
/
variables.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* variables
****************/
// string
let name = "John Smith"
const id = 'SFF-9435'
console.log(name)
// numbers
let age = 45
let height = 1.65
// boolean
let married = true
let with_child = false
// objects
const address = {
city: "Goma",
street: "President de la République",
country: "DRC"
}
// others
let person // undefined
const phone = null // null
/*
* arithmetic operations */
const a = 12
const b = 9
const sum = a + b // sum
const subtract = a - b // subtraction
const multiply = a * b // multiplication
const divide = a / b // division
const modulo = a % b // modulo
console.log(`${a} + ${b} = ${sum}`)
console.log(`${a} - ${b} = ${subtract}`)
console.log(`${a} / ${b} = ${divide}`)
console.log(`${a} % ${b} = ${modulo}`)