Variables_hw_ipynb_2_
%%js
let studentName = "Zoe Chow";
let age = 15;
let isStudent = true;
function request(song) {
return "Now playing " + favoriteSong + " by " + songArtist;
}
let favoriteSong = "Beautiful Things";
let songArtist = "Benson Boone";
console.log("My name is " + studentName + ", I am " + age + " and it is " + isStudent + " that I am a student. " + request());
<IPython.core.display.Javascript object>