JavaScript tips — Using String.raw to create raw strings

Pubblicato il: 14 gennaio 2023
sul canale di: Code 2020
629
29

String.raw creates a raw string that does not process escape sequences. This is useful when you need to create a string that includes backslashes.

String.raw is a template tag function. You write it before the opening backtick of the template string:

String.raw`my \ string \ with \ backslashes`

The resulting string contains the backslashes. Without String.raw, these would instead be interpreted as escape sequences.

https://developer.mozilla.org/en-US/d...

#javascript


In questa pagina del sito puoi guardare il video online JavaScript tips — Using String.raw to create raw strings della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Code 2020 14 gennaio 2023, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 629 volte e gli è piaciuto 29 spettatori. Buona visione!