Keesha HargroveJavaScript construct called destructuringA JavaScript construct called destructuring can be used to extract values from nested arrays or properties from objects, and can also be…Jun 13, 2022Jun 13, 2022
Keesha HargroveA glance at Hooks in ReactAfter the screen has been rendered, the useEffect hook will be called. If we use the useEffect Hook and provide a callback code, we can…May 23, 2022May 23, 2022
Keesha HargroveObject-Oriented in JavascriptOne of the best things modern developers do is to write code in an object-oriented way. By using Object-Oriented JavaScript Programming we…Jan 4, 2022Jan 4, 2022
Keesha HargroveWhat is Hoisting in JavaScriptHoisting — In JS, all declarations are defined at the top of the scope before any code is executed. As a result of hoisting, we can call…Dec 25, 2021Dec 25, 2021
Keesha HargroveWhat is Ternary Operator in JSCode more concisely with the ternary operator.Dec 16, 2021Dec 16, 2021
Keesha HargroveIF/Else in JavaScriptTo create a program that can make decisions, you can use the JavaScript if…else statement.Dec 9, 2021Dec 9, 2021
Keesha HargroveDouble Equals(==)/ FalsyIn JavaScript, if we use double equals, we test for loose equality. Type comparison is also performed when using double equals.Nov 25, 2021Nov 25, 2021