Реализуй функцию questionize в helper.js.
Она должна принять строку, добавить к ней знак вопроса и вернуть что получится.
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
helper.js
export const questionize = (s) => {
return s;
}
solution.js
/**
* Implement a function questionize in helper.js which should take a string and add a question mark ("?") to it
* */
import { questionize } from './helper.js';
console.log(questionize('who are you')); // who are you?
console.log(questionize('me')); // me?