Javascript examples for Function:Function Return
Return value from object's function
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <script type="text/javascript"> var person = function(name){ var tmp = {};//w w w . j av a2 s . c o m tmp.name = name; tmp.printName = function(){ return tmp.name; } return tmp; } var joza = new person("Joe"); </script> <script type="text/javascript"> document.write(joza.printName()); </script> </body> </html>