console.log(thirty.concat(' Days of',' JavaScript'))
console.log(challenge.repeat(2))
// challenge two
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.")
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.")
console.log(typeof'10')
console.log(typeof10)
console.log(typeofparseInt('10'))
console.log(parseFloat('9.8'))
console.log(Number('9.8'))
console.log(parseInt('9.8')+1)
console.log(Number('9.8'))
letsmolArray=["jargon","python"]
smolArray.forEach(hasOnFunction)
functionhasOnFunction(value,index,array){
console.log(`does ${value} include on`)
console.log(value.includes("on"))
}
letsentence="I hope this course is not full of jargon."