Slide 32
Slide 32 text
spread operator
es6
variable args
function createURL (comment, path, protocol, subdomain, domain, tld)
{
var shoutout = name + ": " + protocol + "://" + subdomain + "."
+ domain + "." + tld + "/" + path;
console.log( shoutout );
}
var weblink = ["hypertext/WWW/TheProject.html", "http", "info",
"cern", "ch"],
comment = "World's first Website";
createURL(comment, ...weblink );
Sunday, 12 May, 13