From 0607f578069625ed6cb5bc0df2615101f8fd935c Mon Sep 17 00:00:00 2001 From: Jose Linardo Date: Fri, 15 Apr 2022 10:45:03 -0500 Subject: [PATCH] solucions strings methods --- 02_Day_Data_types/02_day_starter/main.js | 1 - 02_Day_Data_types/02_day_starter/soluciones.js | 1 - 2 files changed, 2 deletions(-) delete mode 100644 02_Day_Data_types/02_day_starter/main.js diff --git a/02_Day_Data_types/02_day_starter/main.js b/02_Day_Data_types/02_day_starter/main.js deleted file mode 100644 index 7762908..0000000 --- a/02_Day_Data_types/02_day_starter/main.js +++ /dev/null @@ -1 +0,0 @@ -// this is your main.js script \ No newline at end of file diff --git a/02_Day_Data_types/02_day_starter/soluciones.js b/02_Day_Data_types/02_day_starter/soluciones.js index e92b135..69749ef 100644 --- a/02_Day_Data_types/02_day_starter/soluciones.js +++ b/02_Day_Data_types/02_day_starter/soluciones.js @@ -103,7 +103,6 @@ let phrase = 'python, jargon' let foundWord = /on/g console.log(phrase.match(foundWord)) -console.log(phrase.match(foundWord)) //6. I hope this course is not full of jargon. Check if jargon is in the sentence. let jargonSentence = 'I hope this course is not full of jargon' console.log(jargonSentence.match('jargon'))