SAShriyash Awasthiinshriyash.hashnode.dev·Sep 13, 2023 · 4 min readReact Interview Questions (6-10) :-As in the previous blog, I have discussed five interview questions, in today's blog I'm discussing the next 5 interview questions, Hope you all will enjoy it and learn something new. Link for previous questions - https://shriyash.hashnode.dev/react-i...00
SAShriyash Awasthiinshriyash.hashnode.dev·Sep 12, 2023 · 3 min readReact Interview Question (1-5) :-Q1. What is React? Ans - React(aka React.js or ReactJS) is an open-source front-end JavaScript library that is used for building composable user interfaces, especially for single-page applications. It is used for handling the view layer for web and m...00
SAShriyash Awasthiinshriyash.hashnode.dev·Jul 25, 2023 · 2 min readHow to convert a specified number into an array of digit's.Example - I/p - const number = 12345 O/p - [1, 2, 3, 4, 5] before getting into the solution let's first understand a few methods in javaScript- String ()- this method returns its input value in the form of a string. const number = 12345; const str = ...00
SAShriyash Awasthiinshriyash.hashnode.dev·Jul 22, 2023 · 2 min readHow to compare two objects in Javascript to determine if first contain the equivalent property value to second one.Before diving into the solution first know about the three Javascript Methods : Object.keys() : this method returns an Array Iterator Object of the keys of the objects. this method does not change the original array. const product = { item : "shoes...00
SAShriyash Awasthiinshriyash.hashnode.dev·Jul 4, 2023 · 5 min readHow to Use Map, Filter and Reduce in JavaScriptFunctional programming is making a quick splash in the field of development these days. And for these reasons: functional programming can let you write more declarative code which is easier to understand, refactor and test. one of the most important ...00