Month: December 2019

20
Dec
2019

What is this keyword in OOP

What is “this”? You may have noticed something slightly strange in our methods. Look at this one…

20
Dec
2019

JavaScript OOP Paradigm Clear

https://www.freecodecamp.org/news/an-introduction-to-object-oriented-programming-in-javascript-8900124e316a/ https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Basics  

18
Dec
2019

Germany Exam

18
Dec
2019

Protected: Implementation of Database Clear All The Concepts

There is no excerpt because this is a protected post.

17
Dec
2019

Event Listeners andGetters in JavaScript

<!DOCTYPE html> <html> <body> <h2>JavaScript Getters and Setters</h2> <p>Getters and setters allow you to get and set…

17
Dec
2019

JS Arrow Function

//Arrow Function Example hello=val=>”Hello “+val; console.log(hello(“Universe!”));