{{ old('name') }}
возвращает валидатор. Request точно, другие не использовал. 0.1 + 0.2 // -> 0.30000000000000004
(0.1 + 0.2) === 0.3 // -> false
var dataSet = [
[ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800" ],
]
dataSet.push('i am string value')
[[ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800" ], 'i am string value']
var dataSet = [
[ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800" ],
]
dataSet[0].push('i am string value')
[[ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800", 'i am string value' ]]
- Как на основании знании о том, страницы сесть, создать свою собственную базу данных и провести между таблицами грамотную связь. Как спроектировать её?
- Как доставать и выводить данные на страницу?
- Как создать админку для магазина
$(window).scroll(function () {
let ratio = $(document).scrollTop() / (($(document).height() - $(window).height()) / 100);
+ $("#progressbar").text(ratio + "%");
$("#progressbar").width(ratio + "%");
});
const comparator = (a, b) => {
if (typeof a === 'number' && typeof b === 'number') {
return a - b;
} else {
return a.toString().localeCompare(b.toString());
}
};
const isSorted = array => {
const count = array.length;
return array.every((current, index) => {
if (index + 1 < count) {
const next = array[index + 1];
return comparator(current, next) <= 0;
} else {
return true;
}
});
};