diff --git a/codewars/7kyu/make-them-bark/koronya.js b/codewars/7kyu/make-them-bark/koronya.js new file mode 100644 index 000000000..dcd152655 --- /dev/null +++ b/codewars/7kyu/make-them-bark/koronya.js @@ -0,0 +1,7 @@ +// [JS][7kyu] Make them bark! +// make-them-bark +// https://www.codewars.com/kata/5535572c1de94ba2db0000f6/train/javascript + +Dog.prototype.bark = function () { + return 'Woof!' +}