Return Something to Me!

Published by Caleb Miller in

Write a function that returns the string "something" joined with a space " " and the given argument a.

Examples

GiveMeSomething("is better than nothing") ➞ "something is better than nothing"

GiveMeSomething("Bob Jane") ➞ "something Bob Jane"

GiveMeSomething("something") ➞ "something something"

Notes

Assume an input is given.

Watch a quick demo on how Edabit works.