Files
ClassContent/历届学生/刘合群/2019-08-29/index.html
2024-09-27 02:06:13 +08:00

46 lines
763 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
// 变量 常量
// 基础数据类型stringnumberbooleannullundefined
// 引用数据类型: objectarrayfunction
// 回调
// function getName (call) {
// (function () {
// call("ddddddd")
// })()
// }
// getName( function(aaaa) {
// console.log(aaaa)
// } )
// var names = {
// age: 1,
// name: 'ddd'
// }
// for (x in names) {
// console.log(names[x])
// }
</script>
</body>
</html>