私はこのコードを持っています:
count = $content.find('.post').length;
for x in [1...count]
/*
prev_el_height += $("#content .post:nth-child(" + x + ")").height();
*/
prev_el_height += $content.find(".post:nth-child(" + x + ")").height();
これが
for (x = 1; x < count; x++) { prev_el ... }
しかし、それはこれに変わります:
for (x = 1; 1 <= count ? x < count : x > count; 1 <= count ? x++ : x--) {
誰かが理由を説明できますか?
編集:期待される構文を出力するにはどうすればよいですか?