Tag: Javascript
The console is part of the window object that gives you access to the browser’s console. It lets you output strings, arrays and objects that help debug your code.
In this post we’ll also learn more about Loggin in JavaScript. This post is for intermediate JavaScript learners.
The console is part of the window object that gives you...
A JavasScript function is a block of code designed to perform a particular task. A JavaScript function is executed when somewhere it is invoked.
In this post we’re going to learn more about Recursive function in JavaScript. This post is specifically for the JavaScript newbies.
What is Function? A JavaScript function is a block of code...
An proxy object wraps another item and captures tasks like perusing/composing properties and some essential activities.
const proxy = new Proxy(target, handler);
Proxy is created with two parameters.
Target: Original object which you want to proxy. Handler: Object that defines which operations to intercept and redefine the intercepted operation....