카타 8급 Color Ghost

1 개요[ | ]

카타 8급 C
# 🔗 문제 풀이

틀:카타 8급-5

2 JavaScript[ | ]

var Ghost = function() {
  this.color = ["white","yellow","purple","red"][Math.floor(Math.random() * 4)];
};
var Ghost = function() {
  var colors = ["white", "yellow", "purple", "red"];
  this.color = colors[Math.floor(Math.random() * (colors.length))];
};
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}