Fetch the repository succeeded.
This action will force synchronization from web-dev-v13/day02-JavaScript-Vue, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-基础语法</title>
</head>
<body>
</body>
<script>
// 弱变量
// var -- 全局变量
//let -- 局部变量
//const --常量(定义后不可改变)
{
var str = "这是一个最好的时代,\n" +
"科技的发展给予了每个人创造价值的可能性;\n" +
"这也是一个最充满想象的时代,\n" +
"每一位心怀梦想的人,终会奔向星辰大海。\n" +
"百度与你们一起仰望星辰大海,携手共筑未来!"
let a = 1111
const c="s"
console.log(str)
alert(a)
alert(c)
}
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。