Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js escape characters

JS Escape Characters
' — Single quote
" — Double quote
 — Backslash
 — Backspace
f — Form feed

 — New line

 — Carriage return
	 — Horizontal tabulator
WebsiteSetup.org - Beginner’s Javascript Cheat Sheet 7
v — Vertical tabulator
Comment

JavaScript Escape Character

const name = 'My name is 'Peter'.';
console.log(name);

//Here are other ways that you can use :

Code	Output
"	include double quote
	include backslash

	new line

	carriage return
v	vertical tab
		horizontal tab
	backspace
f	form feed
Comment

What are escape characters in javascript

// What are escape characters in javascript
Escape characters (Backslash) is used when working with special characters like single quotes, double quotes, apostrophes, and ampersands. Place backslash before the characters to make it display.
console.log("This is + plus character") // This is + plus character
Comment

Escape Character Javascript

console.log("Welcome to "my website"!");
Comment

PREVIOUS NEXT
Code Example
Javascript :: react useref hook 
Javascript :: how to get bearer token in react 
Javascript :: discord.js check every x minutes 
Javascript :: discord js check every x minutes 
Javascript :: isnan 
Javascript :: how to do something once in javascript 
Javascript :: react hook will mount 
Javascript :: JavaScript substring Syntax 
Javascript :: findindex method javascript 
Javascript :: declaring two variables inside for loop 
Javascript :: Session Time Out 
Javascript :: create random password javascript 
Javascript :: javascript number and math 
Javascript :: how to check if it is the current time day.js 
Javascript :: react datepicker documentation 
Javascript :: javascript icon 
Javascript :: reisze image expo react native 
Javascript :: vue v-for loop array 
Javascript :: history react router 
Javascript :: console.log() Syntax 
Javascript :: loading screen fivem js 
Javascript :: structure data in javascript 
Javascript :: object to string js 
Javascript :: crud in node 
Javascript :: javascript if one line 
Javascript :: array method 
Javascript :: new date javascript 
Javascript :: angular auth guard 
Javascript :: Computed Property 
Javascript :: Import A Module In ExpressJS 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =