Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<title>console.log test</title>
</head>
<body>
<script>
function foo() {
console.log('yellow')
}
function bar() {
foo();
}
bar();
</script>
</body>
</html>