Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js if the reverse of a number is better than the original num

//function that takes a two-digit number and determines if it's the largest of two possible digit swaps.
function largestSwap(num) {
	return num / 10 > num % 10
}

console.log(largestSwap(14));
console.log(largestSwap(53));
console.log(largestSwap(99));
 
PREVIOUS NEXT
Tagged: #js #reverse #number #original #num
ADD COMMENT
Topic
Name
6+4 =