Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 answers
573 users
function myFunction() { var a = 3, b = 10; return a + b; } document.write(myFunction()); /* run: 13 */
function myFunction(a, b) { return a + b; } document.write(myFunction(3, 10)); /* run: 13 */
function myFunction(profession) { return "tom is a " + profession; } document.write(myFunction("programmer")); /* run: tom is a programmer */