We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9262f1c commit 6023d0dCopy full SHA for 6023d0d
2 files changed
25_Revision/19_oops_and_classes/oop.js
@@ -0,0 +1,10 @@
1
+const user = {
2
+ username : "iamsujittomar",
3
+ logedIn : true,
4
+ email : "email@gmail.com",
5
+
6
+ getUserDetails : function(){
7
+ console.log(`username : ${this.username}, email : ${this.email}`);
8
+ }
9
+}
10
25_Revision/19_oops_and_classes/theory.md
@@ -1,5 +1,4 @@
# OOP
-
Object Literal
-Constructor Function
-Prototype
0 commit comments