Return Something to Me!

Published by Steven Bonfadini 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.