在JS中使用反引号, 在字符串中包含变量

{{ time }}

示例代码如下

<script>
	const a = 1
	let b = 2
	console.log(`第${a}天有${b}只兔子`)//控制台显示第1天有2只兔子
</script>