DEV Community

Discussion on: Image Classification - Machine Learning in JavaScript

Collapse
 
polaroidkidd profile image
Daniel Einars

Just FYI, you can add syntax highlighting to your code comments by specifying the language after the first three backticks.

CSS:


html {
  background: red;
}
Enter fullscreen mode Exit fullscreen mode

JS


const myObjFn = (param) => {
  console.log(param)
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
bibekkakati profile image
Bibek

Hey Daniel, Thank you for pointing that out.