swetabisht.devMap, 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...Jun 25, 2023·5 min read
swetabisht.devReference 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...Feb 16, 2023·6 min read
swetabisht.dev"==" 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...Feb 13, 2023·7 min read