T
@Tammar_Haider
4) Program to join all elements of the following array into a string. myColor = ["Red", "Green"]
NodeJS
Write a JavaScript function to get the last element of an array. exp ([7, 9, 0, -2])) O/P : -2
NodeJS
Write a JavaScript function to get the first element of an array. Exp ([7, 9, 0, -2] O/P - 7
NodeJS
Write a JavaScript function to clone an array. ([1, 2, 4, 0])); ([1, 2, 4, 0])
NodeJS
1) Write a JavaScript function to check whether an `input` is an array or not
NodeJS
Write a JavaScript function that checks whether a passed string is palindrome or not?
NodeJS
Write a JavaScript function that reverse a number. Example x = 32243; Expected O/P : 34223
NodeJS
Factorial program for 4
NodeJS
find the armstrong numbers of 3 digits
NodeJS
Write a JavaScript program to compute the greatest common divisor (GCD)of two positive integers.
NodeJS
Write a JavaScript program to sum the multiples of 3 and 5 under 1000.
NodeJS
JavaScript program to construct the following pattern, using a nested for loop.
NodeJS
iterates the integers from 1 to 100. Multiple of free print "Fizz" and Five print "Buzz"
NodeJS
compute, the average marks and determine the corresponding grade.
NodeJS
check if the current number is odd or even Sample Output : "0 is even" "1 is odd" "2 is even
NodeJS
Write a JavaScript conditional statement to find the largest of five numbers.
NodeJS
Sort three numbers - Sample numbers : 0, -1, 4 Output : 4, 0, -1
NodeJS
find the sign of product of three numbers. Sample numbers : 3, -7, 2 Output : The sign is -
NodeJS
. Write a JavaScript program that accept two integers and display the larger.
NodeJS