Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv2/övningar/js_start/js/
js_c.js
6 lines UTF-8 Windows (CRLF)
var x = 12;
var y = 34;
var z = 56;
var summa = x + y + z;
const div = document.getElementById('textDiv');
div.innerHTML = 'Summan av ' + x + ' + ' + y + ' + ' + z + ' är ' + summa;