Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 449 Bytes

ex_22.md

File metadata and controls

9 lines (8 loc) · 449 Bytes

Exercise 22

  • Create a new index22.js file
  • Define a variable done and assign the value: true
  • Define a variable married and assign the value: false
  • Define a variable logged and assign the value: false
  • Define a variable likesJS and assign the value: true
  • Show each value using console.log() with the variable name (string) as first parameter and the actual variable value as second
  • Example: console.log('name', name);