Skip to content

This

This operator (this) points to the enclosed object scope.

Syntax
this
Example
obj := {
    value: "Hello World",
    printValue: -> {
        print(this.value);
    },
};

# prints "Hello World"
obj.printValue();