nested-interpolation.js 84 B

123456
  1. /* jshint esnext:true */
  2. assert.strictEqual(
  3. `a${1}b${`${1+1}c`}3`,
  4. 'a1b2c3'
  5. );