Lo he probado y en la ventana alert me sale
undefined. Este es el código:
Cita: <html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
var global;
function modificar() {
global = "Hola";
}
function usar() {
alert(global);
}
</script>
</head>
<body onLoad="javascript:usar();">
</body>
</html>
¿Qué puede estar mal?