Sswetainswetabisht.dev·Jun 25, 2023 · 5 min readMap, Filter, Reduce functions in JavaScriptOverview: JavaScript is a powerful programming language that provides developers with many built-in functions that can help the developer to manipulate data in many different ways. Three of these functions are map(), filter(), and reduce(). In this b...00
Sswetainswetabisht.dev·Feb 16, 2023 · 6 min readReference Error and Type ErrorOverview: Most often than not we have come across a red screen in web browser dev-tools like the above indicating some error has occurred. In this blog, we will be learning briefly about what an error is, some types of error in javascript and focusin...00
Sswetainswetabisht.dev·Feb 13, 2023 · 7 min read"==" VS "===" in JavascriptOverview: The Comparison operator is used to compare two values. In Javascript, we can test equality using two comparison operators. == loose equality(double equals) === strict equality(triple equals) The double equals == operator tests for abstr...02TA