1 00:00:00,660 --> 00:00:07,830 Welcome back, I want to quickly touch on the subject of what we call string concatenation. 2 00:00:08,850 --> 00:00:16,380 Yes, programmers love creating really complex names when concepts may not be as complex. 3 00:00:17,040 --> 00:00:19,890 So what does string concatenation mean? 4 00:00:20,370 --> 00:00:26,940 Well, it simply means adding strings together so I can do hello plus. 5 00:00:28,540 --> 00:00:35,650 Andre and I've concatenating the string, I've added two strings together, so if I print this. 6 00:00:37,200 --> 00:00:38,770 I get hello, Andre. 7 00:00:39,810 --> 00:00:44,100 So if you ever hear people talk about string cocaine nation, that's what they mean. 8 00:00:44,520 --> 00:00:47,220 We're concatenating string's. 9 00:00:47,700 --> 00:00:50,280 By the way, what do you think will happen if I do? 10 00:00:51,120 --> 00:00:51,710 Hello. 11 00:00:51,990 --> 00:00:52,530 Plus. 12 00:00:55,410 --> 00:00:57,660 If I click, run, hmm. 13 00:00:59,310 --> 00:01:00,270 That's not good, is it? 14 00:01:01,460 --> 00:01:05,570 I get type air must be stirring, not Ent.. 15 00:01:06,830 --> 00:01:11,870 So it looks like string concatenation only works with strings. 16 00:01:13,200 --> 00:01:15,630 We'll explore that a little bit more in the next video.