mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
Fixing non compliant files (Ciphers, Conversions and Data Structures)
This commit is contained in:
@@ -13,7 +13,7 @@ var Stack = (function () {
|
||||
// The top of the Stack
|
||||
this.top = 0
|
||||
// The array representation of the stack
|
||||
this.stack = new Array()
|
||||
this.stack = []
|
||||
}
|
||||
|
||||
// Adds a value onto the end of the stack
|
||||
|
||||
Reference in New Issue
Block a user