Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

script.js
Views: 190 | Author: abh
const urls = [
    "ram.html",
    "cpu.html",
    "hdd.html",
    "gpu.html",
    "miku.png",
    "pcp.html",
];

const url_count = 6;

var i = Math.floor(Math.random() * url_count);

window.location.href = urls[i];

Comments