...

/

Playing Around With Strings

Playing Around With Strings

Learn how to concatenate strings and parse string as Integers and Floats.

Concatenating strings

A string is basically a series of characters. Let’s perform some operations on strings.

Press + to interact
console.log('Javascript in ' + 'Practice')

The + concatenates strings. Concatenation means that you join the contents of two strings one after the other.

Strings are immutable, which means that their value cannot be changed. When concatenating two ...