Ad
  • Custom User Avatar

    Hi Steve,

    In your console.log, you forgot to add quotations to make it a string input.
    Since we are using Regex expressions, which describe patterns in string data => the input also needs to be in string data for regex to apply.

    Your statement: console.log(maskify(1234567890123456)
    Should be: console.log(maskify("1234567890123456")

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution