I have an angular 2 service in which I have this line :
transformedObjects.push(new MyObject(myObject.x, myObject._id));
When I use debugger in Chrome Dev tool and follow the process I see this line
transformedObjects.push(new myObject_model_1.MyObject(myObject.y, myObject._id));
Why I have diference on : myObject.x and myObject.y ?