bolo17

JavaScript Variables

Aug 25th, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. JavaScript Variables
  2. JavaScript variables are containers for storing data values.
  3.  
  4. In this example, x, y, and z, are variables:
  5.  
  6. Example
  7. var x = 5;
  8. var y = 6;
  9. var z = x + y;
  10. Try it Yourself ยป
  11.  
  12. get link:http://gestyy.com/ew9nxo
Add Comment
Please, Sign In to add comment