class: title
Anthology
Extra Bits
Garrick Aden-Buie
rstudio::conf(2020, "JavaScript for Shiny Users")
--- # Syntax Preview .flex.flex-wrap[ .w-50[ ```r snake_case <- "awesome" paste("R is ", snake_case) ``` ``` ## [1] "R is awesome" ``` ] .w-50[ ```js camelCase = 'cool' console.log('JS is', camelCase) ``` <div id="out-unnamed-chunk-1"><pre></pre></div> ] .w-50.mt4[ ```html <h1 id="html-is">Nifty</h1> <p class="but-css-is"> Radical </p> ``` ] .w-50.mt4[ ```css #html-is .but-css-is { color: var(--radical); } ``` ] ] --- background-image: url(assets/img/coding-cases.png) background-size: contain background-position: center center background-repeat: no-repeat .footnote[Alison Horst | [github.com/allisonhorst/stats-illustrations](https://github.com/allisonhorst/stats-illustrations/blob/master/other-stats-artwork/coding_cases.png)]