私はこの方法を持っています:
var stopwatch = function () {
this.start = function () {
(...)
};
this.stop = function() {
(...)
};
};
私がそれを呼び出そうとすると:
stopwatch.start();
私は得てUncaught TypeError: Object (here is my function) has no method 'start'
います。私は何を間違っていますか?