Been writing code in Javascript for a couple of months, but always inside pages such as CodeAcademy or Udacity, with their own command line.
And now trying my code directly on a text editor I have a very main question. Why does the text in console.log don't show up in the browswer? I'm attaching here a very basic example to see if I'm doing something wrong.
<!DOCTYPE html>
<html>
<head>
<title>Triangles</title>
<meta = charset=utf-8>
</head>
<body>
<script>
var titulo = "w3resource";
</script>
</body>
</html>
Appreciate it! Thanks,
Jaime