Last active
August 24, 2022 08:33
-
-
Save kurt-liao/f67684fea2a164a90d332de790dfe310 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// usage.mjs | |
import { output } from "./awaiting.mjs"; | |
export function outputPlusValue(value) { return output + value } | |
console.log(outputPlusValue(100)); | |
setTimeout(() => console.log(outputPlusValue(100), 1000)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment