Essential JavaScript

Going Further

Taboo Words Kata

Given an array of input words (words) and an array of taboo words (taboo), return an array of all words in words that don't appear in taboo.

const words = ['I', 'am', 'testing', 'you']; const taboo = ['testing']; const result = removeTabooWords(words, taboo); console.log(result); // ["I", "am", "you"]

Code Editor

Click "Run Tests" to execute your function and see the test results below.

Test Results

Run your code to see test results

Console Output

// Console output will appear here...

0 output lines