RAMram2024.hashnode.dev·20 hours agoTop 10 essential JavaScript methods1. Array.prototype.map(): Creates a new array by applying a function to each element of the original array. const numbers = [1, 2, 3]; const doubled = numbers.map(num => num * 2); // doubled: [2, 4, 6] 2. Array.prototype.filter(): Creates a new ar...Discusstop-10-essential-javascript-methods
Indrajeet Giramcodewords.hashnode.dev·Sep 16, 2024Must know angular interview questions20 JavaScript and 20 Angular concepts along with code snippets JavaScript Concepts with Code and Explanation Event Delegation document.querySelector('#parent').addEventListener('click', function(event) { if (event.target && event.target.matches...DiscussAngularAngular
klingrakakamara.hashnode.dev·Sep 15, 20245 Most Asked Interview Questions (Part 1)HTML stands for HyperText Markup Language. It’s not a programming language as it lacks the features of programming languages. For instance, HTML is missing features like logic and control structure, code execution, as well as variables. But it is sti...Discuss·1 likeHTML
Jawaid Akhtargalaxyworld365.hashnode.dev·Sep 15, 2024Day21 to pro🚀DevOps:Get prepared for interview🧑💻Docker Interview Questions with Answer 1. What is the difference between an Image, Container, and Engine?👉 Image: A Docker image is a lightweight, standalone, and executable software package that includes everything needed to run a piece of software...Discuss90days_of_DevOps_by_JawaidDevops
Dheeraj Jhadheerajjha.hashnode.dev·Sep 15, 2024What Git Skills Do You Need to Work in a Company?What Git Skills Do You Need to Work in a Company? Understanding Git Branching What is a Git Branch? A Git branch is a pointer to a specific snapshot of your repository, allowing you to work on different parts of a project independently. Each branch c...DiscussGitHub
Hardik Dhamijahardikdhamija.hashnode.dev·Sep 15, 2024Decoding String Interview Questions: Set 1 - BasicsA Guide to Common Basic String Challenges in Coding Interviews Introduction In my previous blog, "JavaScript String Methods Explained: Practical Examples Tutorial," I covered essential string manipulation methods with practical examples. If you haven...DiscussJavaScript Debug: Interview Prep SeriesJavaScript
Shivani Sinhachiragha.hashnode.dev·Sep 14, 2024Java Programming Interview Questions with Answers (Part 2)Hello Friends, I hope you are safe and doing great work. Today, I will discuss part 2 of Java interview questions. In this section, I will explain the pattern of Java coding. It is a popular interview question, and I will try to explain it as easily ...DiscussJava
Abhishek Shuklaabshukla.hashnode.dev·Sep 14, 2024Creating a Promise.race() polyfillProblem Link: https://bigfrontend.dev/problem/implement-Promise-race Continuing the Knowing JS series, with a new question! First things first, as usual :) What is a Promise? An object that represents an eventual completion of failure of an asynchron...DiscussKnowing JSJavaScript
Nettribe Medianettribe.hashnode.dev·Sep 13, 2024Indonesia's E-commerce Boom: Gojek and Tokopedia MergerImage credit: Tokopedia The merger of Gojek and Tokopedia to form GoTo is a landmark event in Indonesia’s tech and e-commerce sectors, and it’s creating ripples far beyond the country. Gojek, known for its ride-hailing and digital payment services, a...Discusse-commerce
Shams Nahidblog.shams-nahid.com·Sep 13, 2024Understanding the Common "display" Property Values in CSSIn CSS, display is one of the most used CSS properties. As a value of display property, most commons are none, block, inline, inline-block and flex. Additionally, in different cases, grid, table, table-row, table-cell and list-item are used. Responsi...DiscussNode.js & JavaScriptCSS