Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Try this one
**



My Webpage Title


    1. 456

    1. 234

    1. 123





  • **
    3 years ago
    Try this one
    **
    let player = {
    name: "default_name",
    weapon: "Pistol",
    exp: "Pro",

    // defining method
    setName: function(name) {
    this.name=name;
    },
    getName: function() {
    return this.name;
    },
    showInfo: function() {
    console.log(`${this.getName()} uses ${this.weapon} and is ${this.exp} level player in STBattleRoyal`);
    }
    };

    player.setName("John Wick");
    player.showInfo();
    **
    3 years ago
    **Try this one**
    ***



    CSS transform property



    Transform me!



    ***
    3 years ago
    Try this one
    **


    <br /> My Webpage Title<br />








    **
    3 years ago
    **Try this one**
    ***


    Hiding elements using Media Queries



    Studytonight


    When the browser's width is 600px wide or less, hide the h1 element. Resize the browser window to see the effect.



    ***
    3 years ago
    **Try this one**
    ***



    CSS transform property



    Transform me!



    ***
    3 years ago
    **Try this one**
    ***
    let x = 0;

    while(x < 10)
    {

    console.log(x);
    x++;
    if(x==5){
    x++;
    continue;
    }

    }
    ***
    3 years ago
    **Try this one**
    ***


    <br /> My Webpage Title<br />







    ***
    3 years ago
    **Try this one**
    ***


    Studytonight




    User name


    My name is




    sidebar

    Main



    ***
    3 years ago
    **Try this one**
    ***


    CSS animation fill mode



    Hello

    Studytonight!


    ***
    3 years ago
    **Try this one**
    ***let mobile = {
    name: "Apple iPhone 12",
    price: 1200,

    // defining method
    purchase:function(quantity) {
    console.log(`Please pay ${(this.price)*quantity} for ${quantity} ${this.name} Mobile phones.`);
    }
    };

    // call the method with argument = 2
    mobile.purchase(2);***
    3 years ago
    **Try this one**
    ***


    Adding breakpoint according to device



    Resize the browser window to see how the background color of this paragraph change on different screen sizes.



    ***
    3 years ago