add two number and show result in another browser window
Pls tell me what's wrong in this code??
<html>
<head>
<title>assign-3(f)</title>
<script language="JavaScript">
var a = 6;
var b = 8;
var c = a b;
w=window.open(",",'width=200,height=100');
w.document.open();
w.opener.document.write(c);
w.document.close();
</script>
</head>
</html>