ISIndrajit Sinindrajits.hashnode.dev·Mar 22, 2023 · 1 min readType Error Vs Reference ErrorIntroductionIn this article, we will learn about the difference between Type and reference errors. Type ErrorThe error occurs when you use something that is not intended to be used.example. Using a sharpener to erase something written in pencil. T...00
ISIndrajit Sinindrajits.hashnode.dev·Feb 25, 2023 · 1 min readWhy the function is returning undefined in console?The console is basically a CLI in our browser that can execute snippets of code.console is basically an object, it is a property of a window object and it is accessed with window.console or console. Function: When we declare a function. we tell it to...00