Skip to content

Instantly share code, notes, and snippets.

View aximov's full-sized avatar
🐹

Nakayama Daichi aximov

🐹
View GitHub Profile
(function() {
"use strict";
let arr = [];
for (let i = 0; i < 1e10; ++i) {
if (Math.random() < 0.5) {
arr.push(0);
console.log("ズン");
} else {
arr.push(1);
console.log("ドコ");