A JavaScript Vector object

I love the convenience of the Java Vector object, and JavaScript doesn’t have anything similar to use, so I created this basic class to emulate it. ```javascript /** Vector object simulating the vector object used in the Java programming language. */ function Vector() { this.myArr = new Array(); this.size =... [Read More]
Tags: javascript