What is a JS Object?
A JS object holds multiple values in terms of properties and methods.
What is a JS Array?
A JS array is an ordered list of values. An array can hold values of different types.
What is a JS Constructor?
A JS Constructor is a function that creates an instance of a class which is typically called an object. A constructor gets called by the use of the new keyword
What is a JS RegExp?
Are patterns used to match character combinations in strings
What is a JS Method?
Is a function which is a property of an object, a method is an object referecne to a function.
What is a JS Callback?
Is a function that is yet to be executed, due to it waiting for another function to finish first.
What is a JS Function?
A function is a set of statements that peform task or calculates a value.
What is the DOM?
Is a programming interface that can change the style, structure and content of the HTML or XML document.
What is an Event Listener?
It is a function that waits for an event to occur.
What is a High Order function in JS?
They are functions that operate on other functions, either by taking them as arguments or by returning them.
What is OOP?
Object-Oriented Programming is about writing procedures or functions that perform operations on the data.
What is a Front-end Developer?
Is someone who is able to convert data to a graphical interface so therefore users are able to view it and interact with it.
What is a Back-end Developer?
Is someone who is able to work with the server side of an application and everything that goes along with the communication of the database and browser.
What is a React Hook?
Functions that let us hook into the react state and lifecylce features from function components.
What is a Framework?
A framework in programming is a tool that provides ready-made components or solutions that are customized in order to speed up development.