Variables_hw_ipynb_2_
%%js
let studentName ="ShayMort"
let age =15
let isStudent =true
console.log(studentName,age,isStudent)
let favoriteSong = "I don't want to set the world on fire";
let songArtist = "The Ink Spots";
function playFavoriteSong() {
console.log(`Now playing "${favoriteSong}" by ${songArtist}`);
}
// Call the function to see the output
playFavoriteSong();
<IPython.core.display.Javascript object>