2019-01-11 02:05:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>console.log test</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script>
|
2020-09-25 13:27:13 +00:00
|
|
|
function foo() {
|
|
|
|
console.log('yellow')
|
|
|
|
}
|
|
|
|
function bar() {
|
|
|
|
foo();
|
|
|
|
}
|
|
|
|
bar();
|
2019-01-11 02:05:28 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|