<html lang="en">
<head>
<meta charset="utf-8">
<title>Javascript Getter and Setter Functions</title>
</head>
<body>
<script>
var getValue, setValue;
// Self-executing function
(function() {
var secret = 0;
// Getter function
getValue = function() {
return secret;
};
// Setter function
setValue = function(x) {
if(typeof x === "number") {