TypeScriptLang.org 的教程中控制台输出出现在哪里?

Where does console output appear in TypeScriptLang.org's tutorials?

我正在尝试使用 https://www.typescriptlang.org/play/index.html 上的在线教程学习 TypeScript 使用 Microsoft Edge 浏览器(v. 44.18362.329.0,© 2019)。

第一个教程应该通过 console.log():

输出 "Hello World"
const hello = "Hello"  
const world = "World"  
console.log(hello + " " + world)

但是当我单击页面的 "Run" 菜单项(或按 Ctrl-Enter)时,没有出现任何输出。 TypeScript 的 console.log() 输出到哪里?以及如何使用 Edge 浏览器查看 TypeScript 输出?

katamaster818 found Microsoft's documentation for how to open the Console in Edge:

To open the Console tool in Microsoft Edge, press the F12 key to access the developer tool window (or right-click on the page, and then select Inspect Element). Then, select the Console tab at the top of the window.