I'm a rank newcomer to javascript, thus the question, I'm mapping through a dictionary to render a li of elements in React. This is my code,
<SplitButton id={this.state.title} title={this.state.title}>
{Object.keys(dict).map(key => <MenuItem key={dict[key]} href={`#${dict[key]}`} onSelect={() => this.onTargetSelect(key,dict[key])}>{key}</MenuItem>)}
</SplitButton>
I want to skip the rendering for a particular value(not key). How can I do this in Javascript.