Sultan (2020-01-31T09:57:07.000Z)
For example, the following:

switch (value) {
    case 0...9: break
    case 'a'...'z': break
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20200131/a88c1c0d/attachment.html>
forbes at lindesay.co.uk (2020-03-18T09:36:13.551Z)
For example, the following:

```js
switch (value) {
    case 0...9: break
    case 'a'...'z': break
}
```