View Full Version : How do i type ` ` from my keyboard
histing
10-23-2018, 01:35 AM
hello, i am learning javascript on a website, but it asking me to type in the following:
const endpoint = `${url}${queryParams}${wordQuery}`;
the problem is i can't find the: ` ` character(s) on my keyboard,
where exactly is it?
keyboard
10-27-2018, 12:05 AM
The ` character is to the left of the number 1 and just above the tab key on an american keyboard.
molendijk
10-27-2018, 10:00 AM
Shouldn't that be const endpoint = '${url}${queryParams}${wordQuery}';?
coothead
10-27-2018, 11:14 AM
Hi there Arie,
this link...
Template literals (Template strings) (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)
...should provide "back tick" enlightenment. ;)
coothead
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.