Word Endings

Published by Bjarte in

Create a function that adds a string ending to each member in an array.

Examples

AddEnding(["clever", "meek", "hurried", "nice"], "ly")
➞ ["cleverly", "meekly", "hurriedly", "nicely"]

AddEnding(["new", "pander", "scoop"], "er")
➞ ["newer", "panderer", "scooper"]

AddEnding(["bend", "sharpen", "mean"], "ing")
➞ ["bending", "sharpening", "meaning"]

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.