We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f225eee commit 8e80fe3Copy full SHA for 8e80fe3
exercises/practice/forth/.meta/proof.ci.js
@@ -67,7 +67,7 @@ export class Forth {
67
68
performCommand(command) {
69
if (command.arity > this.stack.length) {
70
- if (this.stack.length == 1) {
+ if (this.stack.length === 1) {
71
throw new Error('Only one value on the stack');
72
}
73
throw new Error('Stack empty');
0 commit comments