Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style Guide: String coercion using string literal #198

Closed
kitsonk opened this issue Aug 31, 2017 · 0 comments
Closed

Style Guide: String coercion using string literal #198

kitsonk opened this issue Aug 31, 2017 · 0 comments

Comments

@kitsonk
Copy link
Member

kitsonk commented Aug 31, 2017

Style Guide

Prior to ES6, the only clear way to coerce a string would be to use String(value), as value + '' coercions are unclear and arguably what is horribly wrong with JavaScript.

With the advent of string literals though, the construct of:

`${value}`

is clear in intent that whatever value is should be stringified into a string. It also performs significantly faster than String(value) in browsers that support it (though the downlevel emit from TypeScript is "" + value, which is still faster than String(value) though).

We should update the style guide to be explicit this is our preferred method for string coercion.

@kitsonk kitsonk added this to the 2017.09 milestone Aug 31, 2017
@dylans dylans modified the milestones: 2017.09, 2017.10 Sep 26, 2017
@kitsonk kitsonk added rc and removed beta3 labels Oct 10, 2017
@kitsonk kitsonk modified the milestones: 2017.10, long-grass, 2017.12 Oct 10, 2017
@agubler agubler removed the rc label Jan 4, 2018
@dylans dylans removed this from the 2017.12 milestone Jan 17, 2018
@agubler agubler closed this as completed Jul 3, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants