console.log(`The quote "There is no exercise better for the heart than reaching down and lifting people up." by John Holmes teaches us to help one another.`)
//Exercise 2
console.log("Love is not patronizing and charity isn't about pity, it is about love. Charity and love are the same -- with charity you give love, so don't just give money but reach out your hand instead.")
//Exercise 3
letstrNumber='10';
console.log(parseInt(strNumber));
//Exercise 4
letfloat='9.8';
console.log(Math.ceil(float))
//Exercise 5
letword1='Python'
letword2='Jargon'
console.log(word1.includes('on'))
console.log(word2.includes('on'))
//Exercise 6
letword='I hope this course is not full of jargon. Check if jargon is in the sentence.'
letsubStr='You cannot end a sentence with because because because is a conjunction';
constremovedWord=subStr.slice(30,54)
console.log(removedWord)
// Exercise Level 3
// Exercise 1
letnumberOfWords='Love is the best thing in this world. Some found their love and some are still looking for their love.';
console.log(numberOfWords.match(/love/gi))
//Exercise 2
letnumWords='You cannot end a sentence with because because because is a conjunction'
console.log(numWords.match(/because/gi))
//Exercise 3
constexpression="I am a teacher, and I love teaching. There is nothing as more rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher? This 30 Days Of JavaScript is also the result of love of teaching.";
//Exercise 4
// Calculate the total annual income of the person by extracting the numbers from the following text. 'He earns 5000 euro from salary per month, 10000 euro annual bonus, 15000 euro online courses per month.'
constannualIncome='He earns 5000 euro from salary per month, 10000 euro annual bonus, 15000 euro online courses per month.'