28 lines
551 B
HTML
28 lines
551 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<meta name="author" content="xgiovio"/>
|
|
<meta name="description" content="A simple test page"/>
|
|
<meta name="keywords" content="Ormai google non se le fila piu"/>
|
|
<meta name ="robots" content="index"/>
|
|
<meta charset="utf-8"/>
|
|
<!-- <link rel="stylesheet" href="style.css" type="text/css" /> !-->
|
|
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var s = "test"; // Start with a string value.
|
|
s.len = 4; // Set a property on it.
|
|
var t = s.len;
|
|
console.log(t);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |