Подскажите пожалуйста, что за переменную среды нужно задать?
Что имеется ввиду под if you're using by file you can use ts-node/register/type-check?
document.getElementById('demo2').innerHTML = data;
$('#demo2 script').each((index, elem) => eval(elem.text()))
src="http://domain.com/file.js";
<script src="http://domain.com/file.js"></script>
<script>
window.onload = function () {
console.log(temp.length);
}
</script>
// http://domain.com/file.js:
temp = [1, 2];
const keySortPriorities = [15, 24, 17, 18];
[{value: 1232312, key: 17}, {value: 123, key: 15}]
.sort((a, b) => keySortPriorities.indexOf(a.key) - keySortPriorities.indexOf(b.key));
[{value: 123, key: 15},{value: 321, key: 18},{value: 1232312, key: 17},{value: 5678, key: 24}]
.sort((a, b) => keySortPriorities.indexOf(a.key) - keySortPriorities.indexOf(b.key))
<script>
window.varibleName = {yourData: 'foo'};
</script>
const action = {name: 'Dima', payload: 30};
const state = {
...state,
[action.name]: action.payload
};
$(elem).find('*').add(elem); // если корневой элемент в переменной
$('#test1, #test1 *'); // искать по ай-ди
const arr = [
{status: 'approved', message: '123'},
{status: 'declined', message: '3123123'},
{status: 'approved', message: '3434342'},
{status: 'approved', message: 'asdsdfdad'}
]
const approvedMessages = arr
.filter(n => n.status === 'approved')
.map(n => n.message);
const obj = {
status: 'approved',
message: approvedMessages.join('\n'),
}