new : Javascript Keyword
javascript has a very unique keyword " new"
May 10, 20261 min read2
Search for a command to run...
javascript has a very unique keyword " new"
Today let's start with an example. function Student(name, standard, age) { this.name = name; this.standard = standard; this.age = age; } Here we have a blueprint for creating student obje

Object Oriented Programming, heard of this word but never gets what exactly is this? No worries let's break it down today So you know what is programming, you know the meaning of orientation? Let's se
