%%js
let studentName = "Veera"
let age = "15"
let isStudent = true
let favSong = "Fe!n by Travis Scott"
console.log(
"My name is " + studentName + ", " +
"my age is " + age + ", " +
"and it is " + isStudent + " that I am a student. " +
"My favorite song is " + favSong + "."
);
<IPython.core.display.Javascript object>