Broken Greetings1 [CodeWars] 8kyu#5 - Broken Greetings [CodeWars] 8kyu#5 - Broken Greetings ■ Description:Correct this code, so that the greet function returns the expected value. ■ Question:1234567function Person(name){ this.name = name;} Person.prototype.greet = function(otherName){ return "Hi " + otherName + ", my name is " + name;}Colored by Color Scriptercs 솔직히.. 뭘 어떻게 하라는건지.. 했다.이번 문제를 풀기 위해서는 생성자 함수와 프로토타입이란 개념이 필요하다.공부하자!! ■ Solution:1234567.. 2016. 5. 29. 이전 1 다음