#DailyBloggingChallenge (37/50)
When programming with #R one thing that I am missing from #JavaScript in back tick notation. E.g.
```
const hello = 'Hello'
const world = 'World'
const helloWorld = `${hello}, ${world}!`
```
And by R with `paste0`
```
hello <- "Hello"
world <- "World"
helloWorld <- paste0(hello, ", ", world, "!")
```
@multimeric that is exactly what I was looking for!