카타 8급 Broken Counter

1 개요[ | ]

카타 8급 C
# 🔗 문제 풀이

틀:카타 8급-2

2 JavaScript[ | ]

function Counter() {
  this.value = 0;
}
Counter.prototype.increase = function() {
  this.value++;
};
Counter.prototype.getValue = function() {
  return this.value;
};
Counter.prototype.reset = function() {
  this.value = 0;
};
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}