CSE 154 Examples

String and Number Concatenation

Description :

In Javascript a string + a number is basically string concatenation of the string and the number (converted to a string).

Examples :

				
					let firstWord = "Hello World";
					let number = 3;
				
					firstWord + number = ??
			
				
					let firstWord = "33";
					let number = 5;
				
					firstWorld + number = ??