how can we declare a variable globally so that we can use it in different different scripts written within same page.In below code how can i declare variable globally in script 1 so that i can used it in script 2.
.php page
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
//this is first script//
</script >
<script type="text/javascript">
//this is second script//
</script >
</head>
</html>