You've successfully subscribed to The Poor Coder | Hackerrank Solutions
Great! Next, complete checkout for full access to The Poor Coder | Hackerrank Solutions
Welcome back! You've successfully signed in.
Success! Your account is fully activated, you now have access to all content.
Home
Author
Terms
Privacy
About
Tumblr
Pinterest
Enable dark mode
Javascript
Beeze Aal
22.May.2020
Which programming language to choose as a beginner?
As someone who have just planned to enter into programming world, we quite often get confused which programming language to learn or start with because of the availability of so many different programming languages.
Beeze Aal
18.May.2020
JS reduce vs map vs foreach vs for loop
Which is the fastest method among reduce vs map vs foreach vs for loop?
Beeze Aal
18.May.2020
Finding the sum of an array of numbers in JavaScript
There are few different ways to find the sum of array of numbers in Javascript Using for loopThe easiest and fastest option. var array = [5, 7, 6 ,3 ,2]; var sum = 0; for(var i=0; i<array.length;i++){ sum+= array[i] } console.log(sum); Using foreach loopvar
Beeze Aal
12.May.2020
How to square a number in javascript
The most basic way to square a number in JavaScript is to multiply the number my itself. But there's two more.
Beeze Aal
12.May.2020
How Long Does It Take to Learn JavaScript?
Many people find it easy to learn CSS and HTML. But when it comes to learning Javascript they find it hard to learn it.