We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4996c44 commit 6b11a60Copy full SHA for 6b11a60
1 file changed
Easy-Programming-Challenges/ABCheck.js
@@ -0,0 +1,6 @@
1
+function ABCheck(str) {
2
+ if(str.match(/a.{3}b/) == null){
3
+ return false;
4
+ }
5
+ return true;
6
+}
0 commit comments