-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6467458
commit 394a38a
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const user = { | ||
username: "Aman", | ||
loginCount: 8, | ||
signedIn: true, | ||
getUserDetails: function () { | ||
// console.log("Got user details from database"); | ||
// console.log(`Username : ${this.username}`); | ||
console.log(this); | ||
} | ||
|
||
} | ||
|
||
// console.log(user.username); | ||
// console.log(user.getUserDetails()); | ||
// console.log(this); | ||
|
||
function User(username,loginCount,isLoggedIn) { | ||
this.username= username; | ||
this.loginCount= loginCount; | ||
this.isLoggedIn= isLoggedIn; | ||
this.greet= function(){ | ||
console.log(`Welcome ${username}`); | ||
}; | ||
|
||
return this //implicitly defined | ||
} | ||
const userOne = new User("Aman",2,true); | ||
const userTwo = new User("Hitesh",2,false); | ||
|
||
// console.log(userOne.constructor); | ||
console.log(userOne.instanceof); |