Revision 6df5001c-a10c-4348-9ebb-43e899192234 - Code Golf Stack Exchange
# [JavaScript (Node.js)], <strike>79</strike> 61 bytes
<!-- language-all: lang-javascript -->
n=>'true int var for in if new try of do'.split` `.slice(0,n)
[Try it online!][TIO-jg26oyct]
[JavaScript (Node.js)]: https://nodejs.org
[TIO-jg26oyct]: https://tio.run/##Zcg7DsIwDADQnVN4ayxBxH8rZ2mU2igosisnLeL0gRVle3qvsIUSLS31IDpT47HJ@BiqrQRJKmzBgNV@hsQg9IZqH1CGWQdflpzqBJMvOUVyx71giypFM/msT8fuhLj7n3M3l26u3dy6uSO2Lw "JavaScript (Node.js) – Try It Online"
If using operators is allowed (most likely will be since they are reserved words) then :
# [JavaScript (Node.js)], 34 bytes
<!-- language-all: lang-javascript -->
n=>'|/^%+<&*-='.split``.slice(0,n)
[Try it online!][TIO-jg2652uo]
[JavaScript (Node.js)]: https://nodejs.org
[TIO-jg2652uo]: https://tio.run/##y0osSyxOLsosKNHNy09J/Z9m@z/P1k69Rj9OVdtGTUvXVl2vuCAnsyQhQa84JzM5VcNAJ0/zf3J@XnF@TqpeTn66RpqGoaYmF6qIEYaIMYaICYaIKYaImabmfwA "JavaScript (Node.js) – Try It Online"
(-8 thanks to _@Adam_)
# [JavaScript (Node.js)], 26 bytes
<!-- language-all: lang-javascript -->
n=>'|/^%+<&*-='.substr(-n)
[Try it online!][TIO-jg26bnhu]
[JavaScript (Node.js)]: https://nodejs.org
[TIO-jg26bnhu]: https://tio.run/##y0osSyxOLsosKNHNy09J/Z9m@z/P1k69Rj9OVdtGTUvXVl2vuDSpuKRIQzdP839yfl5xfk6qXk5@ukaahqGmJheqiBGGiDGGiAmGiCmGiJmm5n8A "JavaScript (Node.js) – Try It Online"
Golfing in progress