| การประกาศ function | ตัวอย่างของการประกาศ function |
|---|
subject:การประกาศ function
content:ตัวอย่างของการประกาศ function function hello () { alert ( "Welcome to android." ); } var hello = function () { alert ( "Welcome to android." ); }; window.hello = function () { alert ( "Welcome to android." ); };