Finish the code for a three dimensional vector object called Vector3 with x, y, and z properties and an addSelf method that takes one argument, another vector object, and adds it component-wise to the vector object that owns the method.

javascript programming
exercise: methods 05