ABAbhijeet Basforeinabhijeetbasfore26.hashnode.dev·Jan 21, 2023 · 5 min readDocument Object Model (DOM) in JAVASCRIPTWhat is API? Application Programming Interface: A piece of software that can be used by another piece of software, to allow applications to talk to each other. Application refers to any software with distinct functions. On the other hand, the inter...00
ABAbhijeet Basforeinabhijeetbasfore26.hashnode.dev·Jan 6, 2023 · 1 min readFirst Class Function VS Higher Order FunctionFirst Class Functions : Javascript treats functions as simple values. Functions are just another "type" of an object. The function can also be passed as an argument and returned from a function. Code: //function as a variable const greet = function()...00
ABAbhijeet Basforeinabhijeetbasfore26.hashnode.dev·Dec 27, 2022 · 1 min readFunctional InterfaceFunctional Interface As we know interface is a blueprint of a class. It has static constants and abstract methods. A Functional Interface is an interface that only has one abstract method. Interface methods are by default public, and abstract. Thus ...00