You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a JavaScript function to find the area of a triangle where lengths of the three of its sides are 5, 6, 7.
Write a JavaScript program to determine whether a given year is a leap year in the Gregorian calendar.
Write a JavaScript program to get the difference between a given number and 13, if the number is greater than 13 return double the absolute difference.
Write a JavaScript program to find 1st January is being a Sunday between 2014 and 2050.
Write a JavaScript program to compute the sum of the two given integers. If the two values are same, then returns triple their sum.
Write a JavaScript program to check two given numbers and return true if one of the numbers is 50 or if their sum is 50.
Write a JavaScript program to check whether a given integer is within 20 of 100 or 400.
Write a JavaScript program to check from two given integers, whether one is positive and another one is negative.
Write a JavaScript program to remove a character at the specified position of a given string and return the new string.
Write a JavaScript program to check whether a given positive number is a multiple of 3 or a multiple of 7.
Write a JavaScript program to check whether a string starts with 'Java' and false otherwise.
Write a JavaScript program to check from two given integers whether one of them is 8 or their sum or difference is 8.
Write a JavaScript program to convert a given number to hours and minutes
Write a JavaScript program to create a new array taking the middle elements of the two arrays of integer and each length 3.