JSFiddle - React, Tailwind, and code Playground

by Mahendra Maurya

JavaScript

function printDescendingSkipOne(num1, num2){
//Your code here
console.log(...args);
	var arr = [];
	while(num1 <= num2){
		arr.push(num2);
		num2 -= 2;
	}
	return arr.toString();
}
console.log(Math.max(6, 18,80));