js-mentorship-razvan / javascript

Javascript study notes
GNU General Public License v3.0
22 stars 2 forks source link

Nothing special #571

Closed RazvanBugoi closed 4 years ago

RazvanBugoi commented 4 years ago

https://www.codewars.com/kata/57029e77005264a3b9000eb5/train/javascript

RazvanBugoi commented 4 years ago
function nothingSpecial(str) {
  return typeof str === "string" ? str.replace(/[^\da-z\s]+/gi , "") : "Not a string!";
}