Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /home/dent/public_html/json/
File Upload :
Current File : /home/dent/public_html/json/arrayreview.html

<script>

    var topmovies = ["Die hard", "Ace ventura", "Star wars"];
    console.log("\ntopmovies\n")
    console.log(topmovies);
    console.log(topmovies[2]);

    var person1 = { "name":"patrick dent", "title":"associate dean", "email" : "dent@usc.edu" };
    console.log("\nperson1\n")
    console.log(person1);
    console.log(person1.title) ;

    var testmovies = [
        {
            "title" : "star wars",
            "genre" : "Sci-Fi",
            "rating" : "PG"
        },
        {
            "title" : "die hard",
            "genre" : "Action",
            "rating" : "R"
        },
        {
            "title" : "Ace Ventura",
            "genre" : "Comedy",
            "rating" : "PG-13"
        }
    ]
    console.log("\ntestmovies\n")
    console.log(testmovies);
    console.log(testmovies[0]);
    console.log(testmovies[0].title);

</script>