The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
JavaScript Global Variable
By Guest on 21st October 2022 05:46:54 AM | Syntax: JAVASCRIPT | Views: 201



New Paste New paste | Download Paste Download | Toggle Line Numbers Show/Hide line no. | Copy Paste Copy text to clipboard
  1. <script>  
  2. var value=50;//global variable  
  3. function a(){  
  4. alert(value);  
  5. }  
  6. function b(){  
  7. alert(value);  
  8. }  
  9. </script>










  • Recent Pastes