8 lines
82 B
JavaScript
8 lines
82 B
JavaScript
"use strict";
|
|
|
|
var obj = {
|
|
method: function method() {
|
|
return 5 + 5;
|
|
}
|
|
};
|