Skip to content

Instantly share code, notes, and snippets.

View gurucharanmk's full-sized avatar
🎯
Focusing

Gurucharan MK gurucharanmk

🎯
Focusing
  • Bangalore
View GitHub Profile
{
"name": "ecmascript-6-beginner-guide",
"version": "1.0.0",
"description": "Demo on setting develop environment setup for \"ECMAScript 6: Beginner Guide\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ECMAScript6",
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script>
<script type="text/babel">
let greeting = "Hello World";
console.log(`${greeting}`);
</script>
</head>