Javascript – Comparing integers in JS
I have two integers (integerOne and integerTwo) and I need to write a JavaScript program that outputs the larger one in the console. The integers are defined like so: let integerOne = 8; let integerTwo = 10; And I'm expecting…