Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Word solution in Creative category for First Word (simplified) by Shiko
import assert from "assert";
function firstWord(text: string): string {
// your code here
return text.split(" ")[0];
}
console.log('Example:');
console.log(firstWord('Hello world'));
// These "asserts" are used for self-checking
assert.equal(firstWord('Hello world'), 'Hello');
assert.equal(firstWord('a word'), 'a');
assert.equal(firstWord('hi'), 'hi');
console.log("Coding complete? Click 'Check' to earn cool rewards!");
May 20, 2020