function Person(firstName, lastName) { this.firstName = firstName; this.lastName = lastName;...
function getPersonInfo(one, two, three) { console.log(one); console.log(two);...
console.log(String.raw`Hello\nworld`);