Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 398 Bytes

File metadata and controls

8 lines (7 loc) · 398 Bytes

Exercise 64

  • Create a new index64.js file
  • Define the name variable and assign a null value
  • If the name variable is truthy then show the following message as output: Your name is %name%
  • If the name variable is falsy then show the following message: Please input a valid name
  • Now assign your name to the name variable and run the code again
  • For yourself try to explain what's going on?