Answers for "how to use mixed quotes in a sentence in js"

0

how to use mixed quotes in a sentence in js

console.log('I hope everyone is enjoying the 30 Days Of JavaScript challenge.\nDo you ?') // line break
console.log('Days\tTopics\tExercises')
console.log('Day 1\t3\t5')
console.log('Day 2\t3\t5')
console.log('Day 3\t3\t5')
console.log('Day 4\t3\t5')
console.log('This is a backslash  symbol (\\)') // To write a backslash
console.log('In every programming language it starts with \"Hello, World!\"')
console.log("In every programming language it starts with \'Hello, World!\'")
console.log('The saying \'Seeing is Believing\' isn\'t correct in 2020')
Posted by: Guest on August-22-2021

Code answers related to "how to use mixed quotes in a sentence in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language