Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 1.21 KB

Return something to me.md

File metadata and controls

38 lines (22 loc) · 1.21 KB

Return something to me

Return something to me

Releer el problema

Elaborar una función que regrese el string "something" + espacio " " + un argumento dado a. Es decir, se devolverá una frase, una oración, un enunciado. ❗Hay que hacer la función para cualquier tipo de input.

Ejemplos

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

giveMeSomething("Bob Jane") ➞ "something Bob Jane"

giveMeSomething("something") ➞ "something something"

giveMeSomething("to me") -> "something to me"

giveMeSomething("to eat") -> "something to eat"

Aproximación

  • Hay que declarar el string de "something " para concatenarlo.
  • La principal acción de la función es regresar, así que hay que agregar return.
  • Para concatenar, hay que agregar el operado + el argumento a: + a.

Code

Primer intento

image

La variable a queda de manera local dentro de la función y por eso no resulta.

Test

image