📜  js 登录到控制台 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:35.346000             🧑  作者: Mango

代码示例4
console.log('this string will show on console') // this string will show on console

const strVar1 = 'fizz';
const strVar2 = 'buzz';

console.log('strVar1 is: ' + strVar1 + ' and strVar2 is: ' + strVar2) // strVar1 is: fizz and strVar2 is: buzz
console.log(420) // 420