Advertisement
bolo17

JavaScript Reference types

Jun 19th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. JavaScript reference types
  2. ! 'use strict'
  3.  
  4. const num = 1
  5.  
  6. const str = '1'
  7.  
  8. const bool = true
  9.  
  10. const nada = null
  11.  
  12. let yetToBeDefined
  13.  
  14. console.log('num is: ', num)
  15. get link:
  16. https://lnkload.com/2pvOO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement