Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First Word (simplified) solution in Uncategorized category for First Word (simplified) by vvm70
import assert from "assert";
function firstWord(text: string): string {
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!");
June 2, 2020
Comments: