๋ชฉ๋กํน์๋ฌธ์ ์ถ๋ ฅํ๊ธฐ (1)
๐ค ์์งlog ๐ค
[ํ๋ก๊ทธ๋๋จธ์ค:Javascript] ํน์๋ฌธ์ ์ถ๋ ฅํ๊ธฐ
ํ๋ก๊ทธ๋๋จธ์ค Lv.0 - ํน์๋ฌธ์ ์ถ๋ ฅํ๊ธฐ ๐ ๋ฌธ์ ์ค๋ช ๐ ์ ํ์กฐ๊ฑด ๐ ํ์ด const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); rl.on('close', function () { const str = `!@#$%^&*(\\'"?:;` console.log(str) }); โ ์ฒ์์๋ console.log("!@#$%^&*(\'"?:;") console.log(!@#$%^&*(\'"?:;) ๋ผ๊ณ ํ๋ค๊ฐ ๊ณ์ ์คํจํด์ console.log(`!@#$%^&*(\'"?:;`) // !@#$%^&*('"?:; ๋ฐฑํฑ( ` ` ) ์ผ๋ก ํด๋ดค๋๋ ..
๐ ํ๋ก๊ทธ๋๋จธ์ค
2024. 4. 15. 16:26