87,994
社区成员
发帖
与我相关
我的任务
分享源代码:
<!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>Document</title>
</head>
<body>
</body>
</html>
<script>
function fn(a, b) {
console.log(a, b);
console.log(typeof a);
console.log(typeof b);
}
fn(null, 'hhh');
fn('hhh', null);
</script>
运行结果:
