|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const aSmallConst = '1234'; |
| 4 | + |
| 5 | +const virtualInsanity = ` |
| 6 | + Oh yeah, what we're living in (let me tell ya) |
| 7 | + It's a wonder man can eat at all |
| 8 | + When things are big that should be small |
| 9 | + Who can tell what magic spells we'll be doing for us |
| 10 | + And I'm giving all my love to this world |
| 11 | + Only to be told |
| 12 | + I can't see |
| 13 | + I can't breathe |
| 14 | + No more will we be |
| 15 | + And nothing's going to change the way we live |
| 16 | + 'Cause we can always take but never give |
| 17 | + And now that things are changing for the worse, |
| 18 | + See, its a crazy world we're living in |
| 19 | + And I just can't see that half of us immersed in sin |
| 20 | + Is all we have to give these |
| 21 | + Futures made of virtual insanity now |
| 22 | + Always seem to, be governed by this love we have |
| 23 | + For useless, twisting, our new technology |
| 24 | + Oh, now there is no sound for we all live underground |
| 25 | + And I'm thinking what a mess we're in |
| 26 | + Hard to know where to begin |
| 27 | + If I could slip the sickly ties that earthly man has made |
| 28 | + And now every mother, can choose the color |
| 29 | + Of her child |
| 30 | + That's not nature's way |
| 31 | + Well that's what they said yesterday |
| 32 | + There's nothing left to do but pray |
| 33 | + I think it's time I found a new religion |
| 34 | + Whoa, it's so insane |
| 35 | + To synthesize another strain |
| 36 | + There's something in these |
| 37 | + Futures that we have to be told |
| 38 | + Futures made of virtual insanity now |
| 39 | + Always seem to, be governed by this love we have |
| 40 | + For useless, twisting, our new technology |
| 41 | + Oh, now there is no sound for we all live underground |
| 42 | + Now there is no sound |
| 43 | + If we all live underground |
| 44 | + And now it's virtual insanity |
| 45 | + Forget your virtual reality |
| 46 | + Oh, there's nothing so bad |
| 47 | + I know yeah |
| 48 | + Of this virtual insanity, we're livin' in |
| 49 | + Has got to change, yeah |
| 50 | + Things, will never be the same |
| 51 | + And I can't go on |
| 52 | + While we're livin' in oh, oh virtual insanity |
| 53 | + Oh, this world, has got to change |
| 54 | + 'Cause I just, I just can't keep going on, it was virtual |
| 55 | + Virtual insanity that we're livin' in, that we're livin' in |
| 56 | + That virtual insanity is what it is |
| 57 | + Futures made of virtual insanity now |
| 58 | + Always seem to, be governed by this love we have |
| 59 | + For useless, twisting, our new technology |
| 60 | + Oh, now there is no sound for we all live underground |
| 61 | + Futures made of virtual insanity now |
| 62 | + Always seem to, be governed by this love we have |
| 63 | + For useless, twisting, our new technology |
| 64 | + Oh, now there is no sound for we all live underground |
| 65 | + Living, virtual insanity |
| 66 | + Living, virtual insanity |
| 67 | + Living, virtual insanity |
| 68 | + Living, virtual insanity |
| 69 | + Virtual insanity is what we're living in |
| 70 | +`; |
| 71 | + |
| 72 | +const smallNestedConstA = 'jamiroquai'; |
| 73 | +const largeNestedConstB = virtualInsanity; |
| 74 | + |
| 75 | +const anotherSmallConst = 'abcd'; |
| 76 | + |
| 77 | +console.log( |
| 78 | + aSmallConst.length, |
| 79 | + anotherSmallConst.length, |
| 80 | + smallNestedConstA.length, |
| 81 | + largeNestedConstB.length |
| 82 | +); |
0 commit comments