I'm trying to create get and set method for a property:
private _name: string;
Name() {
get:
{
return this._name;
}
set:
{
this._name = ???;
}
}
What's the keyword to set a value?
|
I'm trying to create get and set method for a property:
What's the keyword to set a value? |
||||
|
|
|
Here's a working example that should point you in the right direction:
Getters and setters in JavaScript are just normal functions. The setter is a function that takes a parameter whose value is the value being set. |
|||||||||||||
|
|
Typescript uses getter/setter syntax that is like ActionScript3.
That will produce this Javascript, using the Ecmascript 5 Object.defineProperty() feature.
However, in order to use it at all, you must make sure the TypeScript compiler targets ECMAScript5. If you are running the command line compiler, use --target flag like this; tsc --target ES5 If you are using Visual Studio, you must edit your project file to add the flag to the configuration for the TypeScriptCompile build tool. You can see that here: |
|||
|
|
|
You can write this
|
|||
|
|