私はプログラミングと JavaScript もまったく初めてで、これを機能させることができないようです。
私がやりたいことは、オブジェクトの現在の値を使用してx
、最初のクラス内の別のクラスから作成された別のオブジェクトに同じ値を与えることです。
function MyClass() {
this.x = 0;
this.move = function () {
this.x += 10; // I can adjust the x when I call the move
console.log(this.x) // Prints out the current position
}
function doSmthng () {
var obj = new OtherClass();
obj.x = this.x; // Doesn't work, I can't use the current position
console.log(this.x) // Prints out undefined
}
}
function OtherClass() {
this.x = 0;
...
}
私が自分自身を正しく表現したかどうか、または正しい用語を使用しているかどうかはわかりませんが、どんな助けも楽しいものです!
前もって感謝します。