I am beginner in javascript. my usage for javascript is for server side applications. e.g. Node.JS
but wherever i see any tutorial/example for javascript it always starts with html tags, script tags, invoking browser window functions etc. e.g.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function displayDate()
{
document.getElementById("demo").innerHTML=Date();
}
</script>
</head>
<body>
<h1>My First Web Page</h1>
<p id="demo">This is a paragraph.</p>
<button type="button" onclick="displayDate()">Display Date</button>
</body>
</html>
Where can i find a javascript tutorial which only teaches the language, not the webpage/browser usage of it.
I want to know language aspects like
regexp in JS
functional prgramming in JS
any good javascript design patterns (if there are any)
program structure in JS in general
Thanks a lot.
Vimal