This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Allows for international characters on the US layout | |
; To cycle through variations press and hold the desired character, | |
; then press and release the space bar to select the next variation. | |
; ----------------------------------------------------------------------------- | |
; CONFIGURATION | |
; ----------------------------------------------------------------------------- | |
a:: | |
+a:: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const upperRangeBoundry = 5; | |
const rangeSizedArray = [...Array(upperRangeBoundry)] | |
// -> (5) [undefined, undefined, undefined, undefined, undefined] | |
const rangeValuedArray = [...Array(upperRangeBoundry).keys()] | |
// -> (5) [0,1,2,3,4] | |
[...Array(8)].map((_, index, range) => 100 * index/range.length); | |
// -> (8) [0, 12.5, 25, 37.5, 50, 62.5, 75, 87.5] |