Ad
Code
Diff
  • let ok =_=> "ok";
    • ok = n => "ok";
    • let ok =_=> "ok";

Write a function ok that will return a string "ok".

Code
Diff
  • let ok = _ => "ok";
    • //return string that says the word ok
    • let ok = _ => "ok";