mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
10 lines
134 B
JavaScript
10 lines
134 B
JavaScript
|
function inc() {
|
||
|
this.p++;
|
||
|
}
|
||
|
console.log(function () {
|
||
|
inc.call({
|
||
|
p: 6
|
||
|
});
|
||
|
console.log(6);
|
||
|
return 6;
|
||
|
}());
|