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

' instead of ` for Europe #33

Closed
diego77777 opened this issue Dec 19, 2016 · 3 comments
Closed

' instead of ` for Europe #33

diego77777 opened this issue Dec 19, 2016 · 3 comments

Comments

@diego77777
Copy link

Hello, in Europe we don't have on keyboard the ` key, we just have ' or " ...is there a way to let strings like

Hello, ${ firstName } ${ lastName }!

work?

I tried with
'Hello, '+${ firstName }!
and
'Hello, ${ firstName }!'

but it doesn't work!

@kosmodrey
Copy link
Contributor

kosmodrey commented Dec 20, 2016

Hi,

You can avoid template literals if you wish, like this:

console.log("Hello, " + firstName + "!");

in Europe we don't have on keyboard the ` key, we just have ' or "...

BTW, grave accent is on every keyboard :-)

@matteocontrini
Copy link

@kosmodrey not really, for example in Italian the grave accent is put above the letters, so we have è on the keyboard but not the ` key because we never use it.
Anyway, this shouldn't even be an issue on this repo :P

@deksden
Copy link

deksden commented Jan 18, 2017

@matteocontrini : MacBook with Russian layout have separate key for ` on keyboard. Think of it as a Russian kontr-sanctions ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants