Advertisement
hamik112

Untitled

Oct 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var localContext = {
  2. "window":{
  3. location:{
  4. href: "http://www.website.com?varName=foo"
  5. }
  6. }
  7. }
  8.  
  9. // simulated context
  10. with(localContext){
  11. console.log(window.location.href);
  12. // http://www.website.com?varName=foo
  13. }
  14.  
  15. //actual context
  16. console.log(window.location.href);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement