Ad
  • Custom User Avatar

    Needs test cases.

  • Custom User Avatar

    The description should elaborate on what is required. Without test cases this would have been much more confusing.

  • Custom User Avatar

    If the value null is passed in as an argument in JS the user/program has intentionally sent no value (as I understand it). It may be good to test for undefined as this would represent the user not giving any input to the function rather than an intentional null value.

  • Custom User Avatar

    The description for the Kata is correct but the example given to illustrate it is wrong for javascript. I would mark this as having Major Issues if it was possible for me. Having no test cases compounded the issue.

    The Kata states that you will be given an "array of strings" while the example is an array with a string full of fruits and the example output is once again an array with a single string in it. My solution includes solutions for both if you would like to see the difference illustrated.

    May also want to test for undefined rather than/in addition to null as input.

  • Custom User Avatar

    In need of test cases.

  • Custom User Avatar

    The instructions should clearly describe the object that is expected as a result rather than just illustrating it. More than one test case would be a nice addition.

  • Custom User Avatar

    Needs default JS test cases.