JavaScript ES6 Notes

Def vars const = cannot redeclare, cannot changed value let = can change value, cannot redeclare let + const = if inside { } then it won’t work outside Concatination no need for + sign use backticks instead of quotes you can use single or double quotes inside backticks you can use variables inside of backticks like My name is ${name} Object Literals If you want to return an object you don’t need to do following ...

August 3, 2020 · 2 min · 276 words · Saqib Razzaq

Markdown Syntax Guide

This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...

March 11, 2019 · 3 min · 446 words · Hugo Authors