This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Strings

The escape sequence \' inserts a single quote in a string.

let text = 'It\'s alright.';
document.getElementById("demo").innerHTML = text;