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.

25 lines
913 B

// Declaring different variables of different data types
const variablesList = () => {
let firstName = 'Asabeneh' // first name of a person string
let lastName = 'Yetayeh' // last name of a person string
let country = 'Finland' // country string
let city = 'Helsinki' // capital city string
let age = 100 // age in years number
let isMarried = true // boolean value
let nullValue = null // null value
let notDefined // returns not defined
// Declaring variables with number values
const gravity = 9.81 // earth gravity in m/s2
const boilingPoint = 100 // water boiling point, temperature in oC
const PI = 3.14 // geometrical constant
// Variables can also be declaring in one line separated by comma
let name = 'Asabeneh', //name of a person
job = 'teacher',
live = 'Finland'
}
export { variablesList };