board = [7, 6, 8, 0, 1]
// найти такое вин комбо, в котором будут цифры из board
winCombos.find(combo => combo.every(num => board.includes(num)))
// (3) [6, 7, 8]
мой JS код выполняется из render(), а мне бы хотелось, чтобы в render() у меня был только результат выполнения функции
render() {
return (
<div>
{ this.props.items.map(item => <div>{ item.someText }</div>) }
</div>
)
}
str.replace(
/\/\/\/(.+)\/\/\//,
(_, match) => `<b><em>${match}</em></b> <input type="text" id="${Math.random()}">`
)
function parse(txt = '') {
return Promise.resolve(txt.match(/a/gi))
}
texts = ['astajf;lj3', 'AAjfjia33r', '4jlj;lajaaa', 'afdj df jas fjsa ja33a']
await Promise.all(texts.map(parse))
// (4) [Array(2), Array(3), Array(4), Array(5)]
refForm = React.createRef();
/*
this.refForm.current.submit()
*/
return <form ref={this.refForm} />
arr = [[11,22], [33,44]]
console.log ( arr.flat() )
body {
overflow-y: scroll;
}
document.querySelector('p')
.textContent = `${input.value}`