static void update_callback(char **ptr)
{
*ptr = (char *)malloc(sizeof(char) * TEST_STR_SIZE + 1);
...
Читая документацию - сложно полностью понять её.
Может ли это означать, что frontend не мое
либо это стандартная ситуация и стоить продолжать?
let tm;
function event_search(event) {
let search_value = event.target.value;
clearTimeout(tm);
tm = setTimeout(() => {
axios.post(document.location.pathname, { search_value }, { headers })
.then(function (res) {
console.log(res)
document.querySelector('#search').innerHTML = res.data
})
.catch(e => {
console.log(e)
})
},200)
}
const firstNonRepeatingLetter = str =>
[...str].find((n, i, a) => a.indexOf(n) === a.lastIndexOf(n)) || '';
const firstNonRepeatingLetter = str =>
str.charAt(Array
.from(str.toLowerCase())
.findIndex((n, i, a) => a.indexOf(n) === a.lastIndexOf(n))
);
При добавлении новой записи, допустим, в Договора и указании в поле Комплект нужного комплекта, необходимо, чтобы в справочнике Комплекты в поле Договор автоматически записывался нужный договор. Но этого не происходит.
Что необходимо сделать?
for (var i in result) {
if (result.hasOwnProperty(i)) {
//Остальной код
}
}
Object.keys(result).forEach((i) => {
//Остальной код
});
str.match(/rgb\(.*\)/).pop().match(/\d+/g)
str.match(/rgb\((.*)\)/).pop().split(', ')
для небольшого приложения?
if (typeof defaultBg1 == 'Background') // ???
null
и undefined
свойств не бывает, попытка обратиться к конструктору в их случае приведёт к TypeError
; кроме того, instanceof
проверяет всю цепочку прототипов, т.е., например, [ 1, 2, 3 ]
одновременно и instanceof Array
, и instanceof Object
):if (defaultBg1 instanceof Background)
// или
if (defaultBg1.constructor === Background)
// или
if (defaultBg1.constructor.name === 'Background')
const type = x => x == null ? `${x}` : x.constructor.name;
type() // 'undefined'
type(null) // 'null'
type(true) // 'Boolean'
type(69) // 'Number'
type('hello, world!!') // 'String'
type(/./) // 'RegExp'
type([ 187 ]) // 'Array'
type({ z: 666 }) // 'Object'
type(document) // 'HTMLDocument'
type(document.querySelectorAll('div')) // 'NodeList'
type(new class XXX {}) // 'XXX'
type(type) // 'Function'