Guest User

Untitled

a guest
Feb 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. let molecule = 16;
  2. let particle = 18;
  3. let assay = 3;
  4.  
  5. // Add and assign to molecule below
  6. molecule += 16;
  7.  
  8. // Multiply and assign to particle below
  9. particle *= 6.02;
  10. console.log(particle);
  11.  
  12. // Increment assay by 1
  13. assay++;
Add Comment
Please, Sign In to add comment