mercredi 4 avril 2018

function isGreaterThan(numberOne, numberTwo) { numberOne>numberTwo ? return true : return false; }

May i ask why the following code returns the error:

ERROR

numberOne>numberTwo ? return true : false;
                      ^^^^^^
  SyntaxError: Unexpected token return
    at createScript (vm.js:53:10)
    at Object.runInThisContext (vm.js:95:10)
    at Module._compile (module.js:543:28)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)
    at Module.runMain (module.js:605:10)
    at run (bootstrap_node.js:427:7)
    at startup (bootstrap_node.js:151:9)``

I have done everything i can think of, and i'm trying to use this format of if/else instead of the normal if () {} so that i can master all aspects of the language.

CODE

function isGreaterThan(numberOne, numberTwo) { numberOne>numberTwo ? return true : return false; }

Thank you for any help you can provide! P.S. Sorry for any mistakes i made, i'm new to stack overflow

Aucun commentaire:

Enregistrer un commentaire