[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/Live4Code/course-javascript/master/age.js [Back]  [Original]

var year = 1984;
var now  = 2012;
var age  = ???;    // FILL IN ANSWER HERE
var output;

function run()
{
    output = 'They are either ' + age + ' or ' + (age - 1);

    console.log(output);
}

run();

Web Proxy Viewer  |  New URL  |  Original Page