問題タブ [stackblitz]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 必要な金額の通貨の最小数を見つける
必要な金額の最小数のノート (通貨) を見つけるための小さなプログラムを作成しました。たとえば、金額 1121を入力し、以下の値の配列があるとします: notes = [1, 2, 5, 10, 50, 100, 200, 500] したがって、最終結果は次のようになります。
500 * 2(ノート) = 1000
100 * 1 = 100
20 * 1 = 20
1 * 1 = 1
合計は1121になります。理解の助けをいただければ幸いです。for ループが 1 つしかかからないことはわかっていますが、いくつかの部分で混乱しています。
これが私がしたことです: https://stackblitz.com/edit/angular-rufwzk?file=src%2Fapp%2Fapp.component.ts
javascript - React multiple criteria filtering
I created like a shop, it's not for production, just for practice. I want to filter by criteria(size, model), it works when I add model, click filter, then add size, click filter to filter sizes..
Problem is, for example, when I remove all sizes and click filter on size filtering it returns all products, which would be okay if there are no filter criteria at all but there is still brand criteria..
Here is Stackblitz project: https://stackblitz.com/edit/react-jevhb9