js-mentorship-razvan / javascript

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

Regexp Basics - is it all whitespace? #570

Closed RazvanBugoi closed 4 years ago

RazvanBugoi commented 4 years ago

https://www.codewars.com/kata/567de8823fa5eee02100002a/train/javascript

RazvanBugoi commented 4 years ago
String.prototype.whitespace=function(){
  return (/^\s*$/g).test(this);
}