“JS ucieka postacie” Kod odpowiedzi

JS ucieka postacie

JS Escape Characters
\' — Single quote
\" — Double quote
\\ — Backslash
\b — Backspace
\f — Form feed
\n — New line
\r — Carriage return
\t — Horizontal tabulator
WebsiteSetup.org - Beginner’s Javascript Cheat Sheet 7
\v — Vertical tabulator
DevLorenzo

JavaScript Escape Charter

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

//Here are other ways that you can use \:

Code	Output
\"	include double quote
\\	include backslash
\n	new line
\r	carriage return
\v	vertical tab
\t	horizontal tab
\b	backspace
\f	form feed
SAMER SAEID

Co to są postacie ucieczki w 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
Chetan Nada

Odpowiedzi podobne do “JS ucieka postacie”

Pytania podobne do “JS ucieka postacie”

Więcej pokrewnych odpowiedzi na “JS ucieka postacie” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu