The await keyword can only be used in specific contexts: 1) Inside async functions, 2) At the top level of modules (since ES2022), 3) Not allowed in regular synchronous functions, 4) Not allowed in global scope (except modules), 5) Can be used with any Promise or Promise-like object, 6) Multiple await expressions are allowed within these contexts.