justify-content: space-around
; Равномерно распределяет все элементы по ширине flex-блока. Все элементы имеют полноразмерное пространствоlet obj ={
algebra: [3, 4, 5, 3, 4, 5],
geometry: [4, 5, 4, 3, 5],
physics: [5, 4, 3, 5, 4, 4],
}
for (let key in obj) {
console.log(key, obj[key].reduce((a,b) => a+b)/obj[key].length)
}
// -> "algebra", 4
// -> "geometry", 4.2
// -> "physics", 4.166666666666667
let b = [1, 2, 3, 0, 4, 5, 6];
const sum = b.slice(0, b.findIndex(e => e === 0)).reduce((total, amount) => total + amount);
console.log(sum)
import $ from “jQuery”;
window.$ = window.jQuery = $;
if(window.jQuery && window.$) { const somePlugin = import(“pathtoplugin”); }
Или
if(window.jQuery && window.$) { const somePlugin = require(“pathtoplugin”); }
...
mounted: function(){
$('#selector').somePlugin({
// ... настройки плагина
});
}
...
jQuery.ajax({
type: "POST",
url: 'YOU_URL_TO_WHICH_DATA_SEND',
data:'YOUR_DATA_TO_SEND',
beforeSend: function() {
$("#loader").show();
},
success: function(data) {
$("#loader").hide();
}
});
document.querySelector('input').value= '' ;
const elem = document.getElementById('965312');
elem.dataset.id // "1308"
@media (max-width: 768px) {
div {
transition: transform 0;
position: static;
height: 50px;
}
}
}