Skip to content

Instantly share code, notes, and snippets.

@floydawong
floydawong / lambda.ts
Created February 28, 2018 12:35
TS_lambda
// lambda
var shape1 = {
name: "shape1",
popup: function() {
console.log(this.name);
setTimeout(function() {
console.log(this.name);
}, 500);