%%js
let studentName = "My name is Leila,"
let age = " I am 14 years old, "
let isStudent = "and it is true that I am a student.";
let favoriteSong = "Thriler by ";
let songArtist = "Micheal Jackson playing now.";
function request(song) {
return "Now playing " + favoriteSong + " by " + songArtist;
}
console.log(request("Thriller"));
const student = true;
const notStudent = false;
console.log(student);
console.log(notStudent);
console.log(studentName, age, isStudent);
console.log(studentName, age, isStudent, favoriteSong, songArtist);
<IPython.core.display.Javascript object>