.header {
position: relative;
border-bottom: 4px solid transparent;
}
.header::after {
position: absolute;
z-index: 1;
left: 2.5%;
bottom: -4px;
width: 95%;
height: 4px;
content: '';
background-color: #f00;
}
<tr class="tableGrey">
<td>Фактический адрес</td>
<td colspan="4"><?= htmlspecialchars($callCompanyData['result']['UF_CRM_1587463057321']) ?? ' ') ?></td>
</tr>
<tr class="tableGrey">
<td>Фактический адрес</td>
<td colspan="4">{{ callCompanyData.result.UF_CRM_1587463057321 ?? ' ' }}</td>
</tr>
'<h tml><b ody><i nput>'.replace(/(<\/?[a-z])\s([a-z0-9]+)(?=[\s>])/g, '$1$2')
if (obj.hasOwnProperty(key)) {
if (!Array.isArray(obj[key])) {
obj[key] = [ obj[key] ];
}
obj[key].push(val);
} else {
obj[key] = val;
}
это для массива, а у меня объект
Array.isArray
проверяйте instanceof Object
. А ключ нового свойства - это количество уже существующих свойств:if (obj.hasOwnProperty(key)) {
if (!(obj[key] instanceof Object)) {
obj[key] = { 0: obj[key] };
}
obj[key][Object.keys(obj[key]).length] = val;
} else {
obj[key] = val;
}
items.sort((a, b) => a.localeCompare(b, navigator.languages[0] || navigator.language, {numeric: true, ignorePunctuation: true}))
<?php
$num = 1750000;
echo number_format($num, 0, " ", " "); //1 750 000