You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
19 lines
350 B
let a = "string"
|
|
let b = true
|
|
let c = null
|
|
let d = undefined
|
|
|
|
let firstName = "Eligijus"
|
|
let lastName = "Dzikavicius"
|
|
let isMarried = false
|
|
let age = 17
|
|
let live = "Lithuania"
|
|
|
|
let myAge = 17
|
|
let yourAge = 30
|
|
|
|
console.log("I am " + myAge + " years old.")
|
|
console.log("You are " + yourAge + " years old.")
|
|
|
|
let js = "JavaScript"
|
|
console.log(js.length) |