Check w3schools for further information
Element -- selects all h2
elements on the page
h2 {
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
div { |
#!/usr/bin/python | |
''' Python command line argument example using argparse module | |
Example output: | |
./parser.py --server=pyserver --port=8080,443,25,22,21 --keyword=pyisgood | |
Server name: [ pyserver ] |
import json, requests | |
import pprint | |
url = 'http://maps.googleapis.com/maps/api/directions/json' | |
params = dict( | |
origin='Toledo,Spain', | |
destination='Madrid,Spain', | |
sensor='false' | |
) |
Check w3schools for further information
Element -- selects all h2
elements on the page
h2 {
<html> | |
<head> | |
</head> | |
<body> | |
<div style="text-align:center" onmouseover="Play()" onmouseout="Pause()"> | |
<video id="video1" width="480"> | |
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type="video/mp4" /> | |
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.ogg" type="video/ogg" /> | |
Your browser does not support HTML5 video. | |
</video> |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>React Quick Prototyping</title> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.6/react.min.js"></script> |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
The difference is scoping. var is scoped to the nearest function block and let is scoped to the nearest enclosing block (both are global if outside any block), which can be smaller than a function block.
function allyIlliterate() {
//tuce is *not* visible out here
for( let tuce = 0; tuce < 5; tuce++ ) {
//tuce is only visible in here (and in the for() parentheses)
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Chrome against localhost, with sourcemaps", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:4200", | |
"sourceMaps": true, | |
"webRoot": "${workspaceRoot}", |