ASAdnan Sarkarinadnansarkar.hashnode.dev路Oct 29, 2022 路 1 min readJavascript V8 EngineThe V8 engine is created for executing javascript code in a famous web browser, Google Chrome. This engine also contributes to building NodeJS Which is bring out javascript from the web browser and executes JavaScript code outside a web browser. This...00
ASAdnan Sarkarinadnansarkar.hashnode.dev路Sep 15, 2022 路 8 min readJavascript Interview Cheat-SheetIn this article, I will discuss the most common 4 javascript interview questions with examples and visual images. Scope Single Thread Call-Stack Hoisting 1. Scope Scope means access level, where you can access and where you can't. In javascript, t...00
ASAdnan Sarkarinadnansarkar.hashnode.dev路Sep 1, 2022 路 13 min readJavascript Strings & Its MethodThe string data type is the most common in programming languages. Most of cases we have to work on strings, rather than numbers or others. That's why knowing concepts and methods about string always makes you confident. In this article, I will discus...00
ASAdnan Sarkarinadnansarkar.hashnode.dev路Aug 28, 2022 路 12 min readJavascript Array & Its MethodsWhat is Array? Why do we need this? In programming, we have to store data in a variable. Variable is nothing just the memory address name where the data is stored. Now one variable can store a data at a time in the memory, So If we need to store the ...00
ASAdnan Sarkarinadnansarkar.hashnode.dev路Jul 31, 2022 路 7 min readCSS FLEXBOX: A Beginner's Friendly Cheat-SheetAlign HTML elements in row-wise(horizontal) using float or position is a little bit complex for beginners. In this case, flex come to rescue us. Let's learn CSS flexbox with nice examples. display: flex It will work as a container, that has some ele...01A