/
Javascript Strings

Javascript Strings

This how we store a piece of text in Javascript. Here’s a couple of examples:

var APPname = "Space Invaders.";

We can use single quotes alternatively:

var FOObar = 'This is a single quoted string.'

Related content

Javascript Functions
Javascript Functions
More like this
Javascript Variables - Covering the core types
Javascript Variables - Covering the core types
More like this
Javascript Numbers
Javascript Numbers
Read with this
How can do some funky thing with strings that I don't know?
How can do some funky thing with strings that I don't know?
More like this
How do I change the case of a string?
How do I change the case of a string?
Read with this
How can I make a multiline string?
How can I make a multiline string?
More like this