From 99687302dd5d87d3e46da9b7dc96dc2b5b3fa33e Mon Sep 17 00:00:00 2001 From: koronya Date: Fri, 6 Feb 2026 04:29:20 +0900 Subject: [PATCH] [JS][7kyu] Make them bark! --- codewars/7kyu/make-them-bark/koronya.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 codewars/7kyu/make-them-bark/koronya.js 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!' +}