<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Dovud Husanov</title>
    <description>The latest articles on Forem by Dovud Husanov (@dovudhusanov).</description>
    <link>https://forem.com/dovudhusanov</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1057799%2Fbb01dbd2-fcfa-4d8e-876d-6b7b43a00554.JPG</url>
      <title>Forem: Dovud Husanov</title>
      <link>https://forem.com/dovudhusanov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/dovudhusanov"/>
    <language>en</language>
    <item>
      <title>It's live 🥹</title>
      <dc:creator>Dovud Husanov</dc:creator>
      <pubDate>Mon, 03 Nov 2025 06:01:34 +0000</pubDate>
      <link>https://forem.com/dovudhusanov/its-live-2ga</link>
      <guid>https://forem.com/dovudhusanov/its-live-2ga</guid>
      <description>&lt;p&gt;it’s official.&lt;/p&gt;

&lt;p&gt;my app just went live on the App Store 🚀&lt;/p&gt;

&lt;p&gt;meet Balanz AI — Money tracker.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://apps.apple.com/us/app/balanz-ai-money-tracker/id6753617125" rel="noopener noreferrer"&gt;https://apps.apple.com/us/app/balanz-ai-money-tracker/id6753617125&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>10 ReactJS quizzes</title>
      <dc:creator>Dovud Husanov</dc:creator>
      <pubDate>Mon, 01 May 2023 08:02:42 +0000</pubDate>
      <link>https://forem.com/dovudhusanov/10-reactjs-quizzes-3gjh</link>
      <guid>https://forem.com/dovudhusanov/10-reactjs-quizzes-3gjh</guid>
      <description>&lt;h2&gt;
  
  
  If you want to import just the Component from the React library, what syntax do you use?
&lt;/h2&gt;

&lt;p&gt;☑️ &lt;code&gt;import React.Component from 'react'&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;import [ Component ] from 'react'&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;import Component from 'react'&lt;/code&gt;&lt;br&gt;
 ✅ &lt;code&gt;import { Component } from 'react'&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  If a function component should always render the
&lt;/h2&gt;

&lt;p&gt;same way given the same props, what is a simple performance optimization available for it?&lt;/p&gt;

&lt;p&gt;✅ Wrap it in the React.memo higher-order component.&lt;br&gt;
 ☑️ Implement the useReducer Hook.&lt;br&gt;
 ☑️ Implement the useMemo Hook.&lt;br&gt;
 ☑️ Implement the shouldComponentUpdate lifecycle method.&lt;/p&gt;

&lt;h2&gt;
  
  
  How do you fix the syntax error that results from running this code?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;const person =(firstName, lastName) =&amp;gt;&lt;br&gt;
  {&lt;br&gt;
     first: firstName,&lt;br&gt;
     last: lastName&lt;br&gt;
  }&lt;br&gt;
console.log(person("Jill", "Wilson"))&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;✅ Wrap the object in parentheses.&lt;br&gt;
 ☑️ Call the function from another file.&lt;br&gt;
 ☑️ Add a return statement before the first curly brace.&lt;br&gt;
 ☑️ Replace the object with an array.&lt;/p&gt;

&lt;h2&gt;
  
  
  If you see the following import in a file, what is being used for state management in the component?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;import React, {useState} from 'react';&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;✅ React Hooks&lt;br&gt;
 ☑️ stateful components&lt;br&gt;
 ☑️ math&lt;br&gt;
 ☑️ class components&lt;/p&gt;

&lt;h2&gt;
  
  
  Using object literal enhancement, you can put values back into an object. When you log person to the console, what is the output?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;const name = 'Rachel';&lt;br&gt;
const age = 31;&lt;br&gt;
const person = { name, age };&lt;br&gt;
console.log(person);&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;☑️ &lt;code&gt;{{name: "Rachel", age: 31}}&lt;/code&gt;&lt;br&gt;
 ✅ &lt;code&gt;{name: "Rachel", age: 31}&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;{person: "Rachel", person: 31}}&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;{person: {name: "Rachel", age: 31}}&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is the testing library most often associated with React?
&lt;/h2&gt;

&lt;p&gt;☑️ Mocha&lt;br&gt;
 ☑️ Chai&lt;br&gt;
 ☑️ Sinon&lt;br&gt;
 ✅ Jest&lt;/p&gt;

&lt;h2&gt;
  
  
  To get the first item from the array ("cooking") using array destructuring, how do you adjust this line?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;const topics = ['cooking', 'art', 'history'];&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;☑️ &lt;code&gt;const first = ["cooking", "art", "history"]&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;const [] = ["cooking", "art", "history"]&lt;/code&gt;&lt;br&gt;
 ☑️ &lt;code&gt;const [, first]["cooking", "art", "history"]&lt;/code&gt;&lt;br&gt;
 ✅ &lt;code&gt;const [first] = ["cooking", "art", "history"]&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How do you handle passing through the component tree without having to pass props down manually at every level?
&lt;/h2&gt;

&lt;p&gt;☑️ React Send&lt;br&gt;
 ☑️ React Pinpoint&lt;br&gt;
 ☑️ React Router&lt;br&gt;
 ✅ React Context&lt;/p&gt;

&lt;h2&gt;
  
  
  What should the console read when the following code is run?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;const [, , animal] = ['Horse', 'Mouse', 'Cat'];&lt;br&gt;
 console.log(animal);&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;☑️ Horse&lt;br&gt;
 ✅ Cat&lt;br&gt;
 ☑️ Mouse&lt;br&gt;
 ☑️ undefined&lt;/p&gt;

&lt;h2&gt;
  
  
  What is the name of the tool used to take JSX and turn it into
&lt;/h2&gt;

&lt;p&gt;createElement calls?&lt;/p&gt;

&lt;p&gt;☑️ JSX Editor&lt;br&gt;
 ☑️ ReactDOM&lt;br&gt;
 ☑️ Browser Buddy&lt;br&gt;
 ✅ Babel&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dovudhon.com" rel="noopener noreferrer"&gt;https://dovudhon.com&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/dovudhonhusanov" rel="noopener noreferrer"&gt;https://github.com/dovudhonhusanov&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>programming</category>
      <category>quizz</category>
      <category>javascript</category>
    </item>
    <item>
      <title>What are some reasons why JavaScript is currently one of the most popular programming languages?</title>
      <dc:creator>Dovud Husanov</dc:creator>
      <pubDate>Tue, 25 Apr 2023 07:36:23 +0000</pubDate>
      <link>https://forem.com/dovudhusanov/what-are-some-reasons-why-javascript-is-currently-one-of-the-most-popular-programming-languages-27ah</link>
      <guid>https://forem.com/dovudhusanov/what-are-some-reasons-why-javascript-is-currently-one-of-the-most-popular-programming-languages-27ah</guid>
      <description>&lt;p&gt;Versatility: JavaScript can be used for a wide range of tasks, from front-end web development to server-side programming to mobile app development.&lt;/p&gt;

&lt;p&gt;Accessibility: JavaScript can be run in any modern web browser without requiring any additional setup or installations.&lt;/p&gt;

&lt;p&gt;Large community and resources: JavaScript has a massive community of developers who share their knowledge and build open source tools and libraries to help other developers. This makes it easy to find resources and get help with any issues you may encounter.&lt;/p&gt;

&lt;p&gt;Easy to learn: JavaScript is a relatively easy language to learn, with a simple syntax and a low barrier to entry.&lt;/p&gt;

&lt;p&gt;Interactivity: JavaScript allows developers to create dynamic and interactive web pages that respond to user input, making the web experience more engaging for users.&lt;/p&gt;

&lt;p&gt;Continual development: JavaScript is constantly evolving, with new features and capabilities being added on a regular basis, ensuring that it remains a relevant and useful programming language.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa9pbang4rpcikis88jzi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa9pbang4rpcikis88jzi.png" alt="Image description" width="331" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
