JavaScript provides one inbuilt method to remove the fractional part of a number. If you have one floating-point number like 1.24 and you need only the integer part i.e. 1, you can use this method. In this tutorial, I will show you how to do that in JavaScript with a simple function. In the example, I will show you how to do that with different inputs.
ReadFinding the sign of a number is pretty easy in JavaScript. JavaScript provides us one inbuilt method to do that. Just call that method and it will tell you the sign. You don't have to write any separate methods for that. In this tutorial, I will quickly show you how to do that with one example.
ReadJavaScript Math is a built-in object that has different mathematical constants and functions. It has a couple of different functions and constants. In this post, I will show you all the logarithmic functions with examples.
ReadJavaScript program to check if a number is prime or not in four different ways. We will also learn how to find all prime numbers between 1 to 100.
ReadThis post will show you 3 different ways to find if a number is divisible by 3 or not without using the modulo operator. It will use divide and multiply approach, recursive function, and by finding the digit sum of the number to find it.
ReadA palindrome is a sequence of characters that is the same as backward and forward. For example, rotor, level are palindrome strings.
ReadIn this JavaScript tutorial, we will learn how to find out if the first January is Sunday or not between two years. This is a beginner level JavaScript problem. You will learn how to check if a day is Sunday or not using Date class in JavaScript and how to use a for loop.
ReadOur problem is to find out the largest Date in a JavaScript array of dates. We will create one array of Date objects and then find out the largest among them.
ReadWe can use different ways to find the largest among the three numbers in JavaScript. We can either use extra variables to find the largest or we can directly find without using any extra variables. In this blog post, I will show you different ways to find out the largest of three numbers in JavaScript. Try to go through the programs and drop one comment below if you have any queries.
ReadFind the most frequent element in an Array in JavaScript in three different ways. We will use a loop, reduce with filter method, and sort method to find the element with the highest occurrence.
Read