text
у какого-то значения. Например:record.messages[0]['item_apply_id'].text
record.messages[1]['add_date'].text
for (let i = 0; i < record.messages.length; i++) {
for (let message in record.messages[i]) {
console.log(i, message, record.messages[i][message]);
}
}
0 "id" "2222"
0 "item_apply_id" "693575"
0 "text" "aaaaaa"
0 "uid" "283238"
0 "add_date" "2020-07-20 19:19:12"
text
каждого элемента, следует использовать такой цикл:for (let i = 0; i < record.messages.length; i++) {
console.log(record.messages[i].text);
}
$(function(){
$('.some_link').on('click', function(e){
$('html,body').stop().animate({ scrollTop: $('#some_point').offset().top }, 1000);
e.preventDefault();
});
});
выводится при каждой третьей итерации цикла, как это записать?
%
for (let i = 0; i < 5; i++) {
for (let j = 0; j < 10; j++) {
if (j % 3 === 0) {
console.log("Это 0, 3, 6, 9, ... итерация внутреннего цикла");
}
if (j % 3 === 2) {
console.log("Это 2, 5, 8, ... итерация внутреннего цикла");
}
}
}
var pug = require('gulp-pug');
gulp.task('pug', function() {
return gulp.src('app/pug/**/*.pug')
.pipe( pug({pretty: true}) )
.pipe(rename(function (path) {
path.extname = ".php"
}))
.pipe(gulp.dest('app/'))
.pipe(browserSync.reload({stream: true}));
});
$(“.js-recieved-comment”).on(“click”, function() {
If($(this).attr(“data-action”) == “save”) {
$(“.b-notepad__feedback-letter_title_icon”).removeClass('fa-exclamation').addClass('fa-plus');
} else if ($(this).attr(“data-action”) == “remove”) {
$(“.b-notepad__feedback-letter_title_icon”).removeClass('fa-plus').addClass('fa-exclamation');
}
});
<mjml>
<mj-body>
<mj-section>
<mj-column width="200">
<mj-button background-color="black" color="white" href="http://toster.ru">
mjml me!
</mj-button>
</mj-column>
<mj-column width="200">
<mj-button background-color="black" color="white" href="http://toster.ru">
mjml me!
</mj-button>
</mj-column>
</mj-section>
</mj-body>
</mjml>
hoverOverlay.style.transform = "translate(" + coords.left + "px, " + coords.top + "px)";
Как встроить gitlab в phpstorm?В каком смысле "встроить"? Вы можете на GitLab'e создать проект/репозиторий, получить его ссылку и делать pull/push/etc Вашего местного (локального) git-репозитория с проектом в удаленный репозиторий, лежащий на GitLab'е.