Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 7: Advanced JavaScript Object Handling!

Instruction

Strings

A String is a datatype used to hold text of arbitrary length. String variables are created by assigning a string literal to them. String literals can be enclosed in either double quotes " " or single quotes ' '.

"use strict";
const myName_1 = "Mike";      // Double quote
const myName_2 = 'Monica';    // Apostrophe
const myName_3 = "naΙΊΜ Ι―Γ§ito";  // Non-latin characters

If y...