Explorar o código

Add an error throw for popping empty stack

ApisNecros hai 1 ano
pai
achega
541bd96c27
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      starfish.js

+ 4 - 1
starfish.js

@@ -555,7 +555,10 @@ class Stack {
      * @returns {*}
      */
     Pop() {
-        return this.stack.pop();
+        const value = this.stack.pop();
+        if(value == undefined){ throw new Error(); }
+
+        return value;
     }
 
     /**