Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
function isLess(a, b) {
// Only change code below this line
switch(a, b){
case (a < b):
return true;
default:
return false;
}
// Only change code above this line
}
isLess(10, 15);
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36.
Challenge: Returning Boolean Values from Functions
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.