My Book

Welcome in my book!

This is an exercise:


Define a variable x equal to 10.

var x =
var x = 10;
assert(x == 10);
// This is context code available everywhere
// The user will be able to call magicFunc in his code
function magicFunc() {
    return 3;
}