Different ways to create an Object in Javascript.
Creating objects made easy
May 23, 20212 min read257

Search for a command to run...
Articles tagged with #javascript
Creating objects made easy

Welcome Ever wanted to insert a beautiful code editor in your react app? Answer is probably yes. So, let's get started. Step 1 - Installing dependencies npm i react-ace or if you are using yarn yarn add react-ace Step 2 - Creating a Component Now, we...

Testing with Jest, this may sound overwhelming but in fact getting started is very simple. To get started let us test a simple function const celsiusToFahrenheit = (temp) => { return (temp * 1.8) + 32 } Here we declared a function named celsiusT...
