Javascript: Object Oriented Programming

February 24, 2020 admin 0

What is Object Oriented Programming? Object-oriented programming (OOP) refers to a programming in which programmers define the data type of a data structure, and also the types of operations (functions) that can […]

Javascript Events

February 23, 2020 admin 0

Events are actions or occurrences that happen in the system you are programming, which the system tells you about so you can respond to them […]

No Image

Javascript Inbuilt Methods: Part I

February 21, 2020 admin 0

Here are the JS DOM inbuilt methods to get these HTML tags/elements: document.getElementById(id) document.getElementsByTagName(name) document.getElementsByClassName(class) document.querySelector(*) document.querySelectorAll(*) We can use these methods to update the […]

Javascript – How to add comments

February 19, 2020 admin 0

Here are the syntax to add comments in Javascript. 1 Double Trailing Slash – “//” Example Code: <!DOCTYPE html> <html lang=”en”> <head>     <meta charset=”UTF-8″> […]