UNPKG

ibm-india-rajtgin

Version:

This is my IBM Oct training module

21 lines (19 loc) 526 B
/** * Created by Raj on 10/24/2016. */ var Hero = function(fn, ln){ var secret = " My Secret"; this.title = " Hero "; this.fname = fn; this.lname = ln; this.fullname = function(){ return this.fname + " < > " + this.lname } }; var comicHero = new Hero("Bruce", "Wayne"); var movieHero = new Hero("Rajani","Kanth" ); console.log(comicHero.title); console.log(comicHero.secret); console.log(comicHero.fname); console.log(comicHero.lname); console.log(comicHero.fullname());