Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dz1 #15

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

dz1 #15

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions dz1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*jslint browser: true*/
var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

function sRand() {
'use strict';
return Math.random() > 0.5 ? 1 : -1;
}

function sBubble(arr) {
'use strict';
var i, j, tmp;
for (i = 0; i < arr.length - 1; i += 1) {
for (j = 0; j < arr.length - 1; j += 1) {
if (arr[j + 1] < arr[j]) {
tmp = arr[j + 1];
arr[j + 1] = arr[j];
arr[j] = tmp;
}
}
}
return arr;
}

arr.sort(sRand);

window.onload = (function () {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

window.onload получит undefined ибо тут IEFE (тутжевызванная функция), которая ничего не возвращает. Убери вызов функции и будет все хорошо.

А еще лучше делать так:

window.addEventListener('load', function () {
    'use strict';
    document.getElementById('arr').innerHTML = arr;
    document.getElementById('btn').addEventListener('click', function () { 
        document.getElementById('sarr').innerHTML = sBubble(arr); 
    }, false);
}, false);

Ну и назови arr и sarr каким-нибудь красивым и понятным всем именем. result или sort-result или еще как. sarr == http://www.footballtop.ru/players/mohamed-sarr

'use strict';
document.getElementById('arr').innerHTML = arr;
document.getElementById('btn').onclick = function () { document.getElementById('sarr').innerHTML = sBubble(arr); };
}());