Guest User

Untitled

a guest
Oct 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function () {
  2. let variable = null;
  3.  
  4. if (condition) {
  5. variable = 'hello world';
  6. }
  7.  
  8. console.log(variable); // want 'hello world' if condition
  9. }
Add Comment
Please, Sign In to add comment