Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
function processValue(value) { if (typeof value === "string") { // TypeScript knows that value is a string here return value.toUpperCase(); } else { // TypeScript knows that value is a number here return value.toFixed(2); } } // Examples console.log(processValue("hello world")); // Outputs: HELLO WORLD console.log(processValue(123.456)); // Outputs: 123.46
HELLO WORLD 123.46