Comment on page
🖋
Variables Practice
/*
< Variable basic 1 >
💬 를 적절한 값으로 고쳐주세요!
*/
const 💬 = "켄";
const introduction = "제 이름은 " + myName + "입니다.";
alert(introduction + "🎉");
/*
< Variable basic 2 >
💬 를 적절한 값으로 고쳐주세요!
*/
const course = "Bootcamp Prep";
alert(`Hi I am getting ready for ${💬} 🎉`);
Last modified 1yr ago