subaru-hello / Zeroken

一軒目に飲むお酒と飲む順番を提供するアプリ
5 stars 0 forks source link

[WIP]バックエンドで作成した酒ケジュールをフロントに表示させたい #129

Closed subaru-hello closed 2 years ago

subaru-hello commented 2 years ago

概要

119 で作成した酒ケジュールをResult.vueに表示させたい

TODO

get = foods[Math.floor(Math.random() * foods.length)]; console.log(get); //{name: "pine", value: 400}


配列
```javascript
const foods = [
    ["apple", "pine", "banana", "orange"],
    ["carrot","broccoli","celery","lettuce"],
    ["coffee","tea","wine","beer"]
];

let get = [];
for (let i of foods) {
        get.push(i[Math.floor(Math.random() * foods.length)]);
}

console.log(get);
console.log(get);
//["apple", "celery", "wine"]

https://github.com/subaru-hello/Zeroken/blob/6074a54a21d64046a41b209602f727f3522c4411/app/frontend/pages/Result.vue#L521

subaru-hello commented 2 years ago

0ac359e で対応