7 lines
88 B
JavaScript
7 lines
88 B
JavaScript
var State = {
|
|
called_with: null,
|
|
};
|
|
|
|
function test_func(x) {
|
|
State.called_with = x;
|
|
}
|