javascript Programming Glossary: outside_scope
Why does shadowed variable evaluate to undefined when defined in outside scope? http://stackoverflow.com/questions/1528320/why-does-shadowed-variable-evaluate-to-undefined-when-defined-in-outside-scope code html head head body script type text javascript var outside_scope outside scope function f1 alert outside_scope f1 script body.. var outside_scope outside scope function f1 alert outside_scope f1 script body html The output for this code is that the alert.. as html head head body script type text javascript var outside_scope outside scope function f1 alert outside_scope var outside_scope..
|