JHJayesh Handeinjayeshhande.hashnode.dev·Nov 2, 2022 · 3 min readFunction Methods in JavaScript.In JavaScript, all functions are object methods. If a function is not a method of a JavaScript object, it is a function of the global object. We can discuss some methods here and will try to understand them properly with the help of practical examp...00
JHJayesh Handeinjayeshhande.hashnode.dev·Nov 1, 2022 · 3 min readA Closer Look at Functions in JavaScriptFirst-Class and Higher-Order Functions About a fundamental property of the JavaScript language, which is the fact that it has first-class functions. This enables us to write higher-order functions. But what's that all about? Well, let's see. Firs...00
JHJayesh Handeinjayeshhande.hashnode.dev·Oct 13, 2022 · 3 min readPrimitives Vs Objects (Reference Types)Primitive types are immutable, objects only have an immutable reference, but their value can change over time. By understanding the storing of data in Javascript we will understand it better. First, we see, the examples of primitives : PRIMITIVES ...00
JHJayesh Handeinjayeshhande.hashnode.dev·Oct 12, 2022 · 3 min readImportance of ' this ' in JavaScript.About the 'this' keyword in javascript. 'this' keyword/variable: It is a special variable that is created for every execution context (every function). It takes a value ( point to ) the "owner" of the function in which 'this' keyword is used. The v...00
JHJayesh Handeinjayeshhande.hashnode.dev·Aug 22, 2022 · 6 min readServer ErrorsWhat are server Errors and How to Fix Them? Sometimes when you are trying to visit a web page, you are met with an HTTP error message. It's a message from the web server that something went wrong. In some cases, it could be a mistake you made, but ...00