Skip to content

Implementation Edit to Bogo Sort in Javascript #291

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

Merged
merged 3 commits into from
Aug 27, 2018
Merged
Changes from all commits
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
8 changes: 8 additions & 0 deletions contents/bogo_sort/code/javascript/bogo.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ function shuffle(arr) {
arr[r] = tmp;
}
}

function main() {
const testArray = [4, 5, 123, 24, 34, -5];
Copy link
Member

Choose a reason for hiding this comment

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

I don't know JS too well, but if you declare testArray and const can you actually modify it?

Copy link
Member

Choose a reason for hiding this comment

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

yes, you can not reassign this. but you can add/remove/reorder elements in array like this.

Copy link
Member

Choose a reason for hiding this comment

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

That's pretty silly ^^

bogoSort(testArray);
console.log(testArray);
}

main();