1
Answer

Good uses fo 3 dimensional arrays

Rob

Rob

16y
5.4k
1
I am looking for some advice on 3 dimensional arrays. Can someone please give some real world examples of where it would be prudent to use a 3 dimension array? Has anyone used 3 dimensional arrays in a software app? If so what was it for? What's the best way to visualize an an array of 3 dimensions? As a cube structure?
Answers (1)
0
Vikram
NA 319 262.4k 14y
Hi yashwant,
  
    Just Define variable in the Markup it consider as Global.

e.g
  
   <script type='text/javascript>
       var Navigateurl="~/block/abc.aspx";
         function pageLoad()
         {
                 //do something
         }

         function otherFunction()
        {
            var newurl = Navigateurl;
        }

</script>
This way you can declare the global variable in the markup.

Hope this will help you.

Regards,
 Vikram