TMTaha Mahmoudintm08.hashnode.dev·Dec 30, 2022 · 2 min readObjects in JavaScriptIn JavaScript, there are many ways to create objects. 1- Using object literal syntax. 2- Using the 'new' keyword 3- Using object.create() 4- Using object.assign() In this article we will talk about object.create(). First, what is the object.create():...00
TMTaha Mahmoudintm08.hashnode.dev·Aug 15, 2022 · 4 min readTricky JavaScript interview questionsIn this article, you will see a lot of JavaScript tricky questions maybe you will face in your interview. Let's get started. console.log(1 + "1")// 11 console.log(1 - "1") // 0 1- Plus operator in JavaScript The first thing you should think about i...00
TMTaha Mahmoudintm08.hashnode.dev·May 28, 2022 · 2 min readJavaScript Call StackIn this article, we will talk about JavaScript, there are some concepts related to each other in JavaScript. Call stack - web API - Event loop - callback Queue. First, we will talk about call stack we use it for tracking the code in order to know w...00
TMTaha Mahmoudintm08.hashnode.dev·May 9, 2022 · 4 min readCSS Units: px | percent | em | remThere are so many different units in CSS, Most developers know how to work with pixels and percentage.There are other units that we use without understanding them well, and I was one of them. These units are rem, em. In CSS the units are divided into...00