Subj : local variable & global variable To : netscape.public.mozilla.jseng From : celleris@naver.com (Youngsun Jeong) Date : Wed Oct 08 2003 12:03 am Hello, please see below: script example> var myAge=20; var myName="Ann"; function MyInfo() { var yourAge = myAge + 13; var yourName = "John"; return yourAge; } : : Question : Where are global variable "myAge" and "myName" stored? And Where are local variable "yourAge" and "yourName" stored? They are stored in context area? .