Ad
  • Custom User Avatar

    This line has been added some time ago --> Note: The output array should be sorted alphabetically by key name.

  • Custom User Avatar

    Please adjust the description for people that use JS. The tests all come back as failed if they don't use sort.

  • Default User Avatar

    You got an error from putting the pound sign under a string format?

  • Default User Avatar

    Only something within quotation marks are considered strings; numbers are just values if you don't surround them with quotations. For example 12345 is considered a number, "12345" is considered a string. You can convert numbers into strings by using .toString() method. Therefore 12345.toString() === "12345"