JavaScript Tutorial: Interplay – Alert, Immediate, Verify | Internet Improvement Tutorials #54



► Supply Code & Notes: https://codewithharry.com/movies/web-development-in-hindi-54
►This video is part of this Full Internet Improvement in Hindi Course Playlist: https://www.youtube.com/playlist?record=PLu0W_9lII9agiCUZYRsvtGTXdxkzPyItg
►Click on right here to subscribe – https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww
►Checkout my English channel right here: https://www.youtube.com/ProgrammingWithHarry

Greatest Hindi Movies For Studying Programming:

►Study Python In One Video – https://www.youtube.com/watch?v=ihk_Xglr164

►Python Full Course In Hindi – https://www.youtube.com/playlist?record=PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME

►C Language Full Course In Hindi –
https://www.youtube.com/playlist?record=PLu0W_9lII9aiXlHcLx-mDH1Qul38wD3aR&disable_polymer=true

►JavaScript Full Course In Hindi –
https://www.youtube.com/playlist?record=PLu0W_9lII9ajyk081To1Cbt2eI5913SsL

►Study JavaScript in One Video – https://www.youtube.com/watch?v=onbBV0uFVpo

►Study PHP In One Video – https://www.youtube.com/watch?v=xW7ro3lwaCI

►Django Full Course In Hindi –
https://www.youtube.com/playlist?record=PLu0W_9lII9ah7DDtYtflgwMwpT3xmjXY9

►Machine Studying Utilizing Python – https://www.youtube.com/playlist?record=PLu0W_9lII9ai6fAMHp-acBmJONT7Y4BSG

►Creating & Internet hosting A Web site (Tech Weblog) Utilizing Python – https://www.youtube.com/playlist?record=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf

►Superior Python Tutorials – https://www.youtube.com/playlist?record=PLu0W_9lII9aiJWQ7VhY712fuimEpQZYp4

►Object Oriented Programming In Python – https://www.youtube.com/playlist?record=PLu0W_9lII9ahfRrhFcoB-4lpp9YaBmdCP

►Python Information Science and Large Information Tutorials – https://www.youtube.com/playlist?record=PLu0W_9lII9agK8pojo23OHiNz3Jm6VQCH

Observe Me On Social Media
►Web site (created utilizing Flask) – http://www.codewithharry.com
►Fb – https://www.fb.com/CodeWithHarry
►Instagram – https://www.instagram.com/codewithharry/
►Private Fb A/c – https://www.fb.com/geekyharis
Twitter – https://twitter.com/Haris_Is_Here

source

46 thoughts on “JavaScript Tutorial: Interplay – Alert, Immediate, Verify | Internet Improvement Tutorials #54”

  1. let checkAge = prompt("Are you 18+ older ?");

    if(checkAge>=18){

    console.log("welcome");

    alert("Welcome");

    }

    else{

    console.log("Sorry, your are is not 18+");

    alert("Sorry, your are is not 18+");

    }

    Reply
  2. <script>

    let age= prompt("Enter Your Age",0);

    if(age>=18){

    alert("You are old enough to enter the page");

    }
    else{

    alert("You are not old enough to enter the page");

    }

    </script>

    Reply
  3. Challenge Accepted bro!
    <script>

    let name=prompt(" what is your age ");
    console.log(name);
    if (a>18){
    alert(" You are allowed in this club");
    }

    else(a>18){
    alert(" You are not allowed in this club");
    }

    </script>

    Reply
  4. let age =prompt("What is your age", "Enter your age here");

    if(age>18){

    console.log("You are allowed inside the club");

    }

    else{

    console.log("You are not allowed inside the club")

    }

    Reply
  5. Hello Harry sir,
    let eligible = confirm(" are you eligible to club?");

    //console.log(eligible)

    if (eligible < 18) {

    console.log("you are allow to club");

    } else {

    console.log("you are not allow to club");

    }

    Reply
  6. Let age =prompt ("enter your age","18")
    age=confirm("are you sure you want to proceed with this age")
    If(age<=18){
    alert("you are not eligible to vote")
    console.log("age entered is less than 18")
    }
    else{
    alert("you are eligible to vote ")
    console.log("age entered is greater than 18"}

    Reply
  7. let age = prompt("what is your age?");

    console.log(age)

    if(age<18){

    console.log("you are not allowed to enter in the club")

    }

    else if(age>18){

    console.log("you are allowed to enter in the club")

    }

    Reply
  8. age =prompt("enter your age")

    if (age => 18){

    check =confirm("are u sure u are " + age + " old")

    if (check){

    alert("welcome u are allowed")

    }else{

    alert("refresh the page")

    }

    }else{

    alert("sorry not allowed")

    }

    Reply
  9. Challenge Accepted:
    <script scr="quiz1.js">
    let age=confirm ("Are you less than 18 years old");
    if(age){
    console.log("You will be able to go to the party");
    }else{
    console.log("You will not be able to go to the party");
    }
    </script>

    Reply
  10. 'Challenge Accepted'😘😘❤
    let age= prompt("Enter your age ?");

    if(age>18){

    alert("welcome");

    console.log("welcome");

    }

    else{

    alert("you are not allowed");

    console.log("not allowed");

    }

    Reply
  11. let age = prompt("Your Age?", "")

    if (age > 0 && age < 100) {

    if (age >= 18) {

    let validation = confirm("Are you really 18+?");

    if (validation) {

    console.log("You can Enter the club");

    }

    else {

    console.log("Go home kid!");

    }

    }

    else {

    console.log("You can't enter in the club");

    }

    }

    else{

    console.log("Please Enter a valid age");

    }

    Reply
  12. //Yash code Yash code Yash code Accepted Accepted

    let age = prompt("Enter your age.","00")

    if (age>14) {

    console.log("You are allowed to the club")

    }

    else{

    console.log("You are not allowed to the club")

    }

    Reply

Leave a Comment