Features in JavaScript | Net Growth Tutorials #53



► Supply Code & Notes: https://codewithharry.com/movies/web-development-in-hindi-53
►This video is part of this Full Net Growth 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 Knowledge Science and Huge Knowledge 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

34 thoughts on “Features in JavaScript | Net Growth Tutorials #53”

  1. <script>

    function comparenumber(a,b) {

    if (a>b) {

    }

    return("a is greater than b")

    if (b>a) {

    return("b is greater than a")

    } else {

    return("a is equal to b")

    }

    }

    let a = 5;

    let b = 5;

    comparenumber(a,b);

    const result comparenumber(a,b);

    console.log(result)

    </script>

    Reply
  2. <script>

    function quiz(a,b){

    if(a<b){

    console.log(a +' is lesser than '+ b);

    }

    else if (a>b){

    console.log(a +' is grater than '+ b);

    }

    else if(a==b){

    console.log(a +' is equal to '+ b);

    }

    }

    let quiz2=quiz(4,4);

    console.log(quiz2);

    </script>
    #HARRY BHAI BEST TEACHER OF CODING

    Reply
  3. Harry bhai mere answer
    function Big(num1,num2) {

    if (num1>num2) {

    full =(num2 + " is greater than " + num1)

    }

    else if(num1=num2){

    full =("These are equal numbers")

    } // YASH YASH YASH YASH YASH function

    else{

    full =(num2 + " is greater than " + num1)

    }

    return full;

    }

    let finale = Big(2,2);

    console.log(finale);

    Reply
  4. Respected Sir, I have learned a lot from you! I do have a request that as you made these lectures/tutorials for HTML , CSS , JAVASCRIPT AND NODE JS , PLEASE DO MAKE VIDEOS LIKE THESE ABOUT TYPESCRIPT ! Its a humble request from your student in Pakistan . Thanks

    Reply
  5. *******METHOD1 (using "console.log())"********

    function identify(a, b) {

    if (a > b) {

    console.log(a,"is greater than",b);

    }

    else {

    console.log(b,"is greater than",a);

    }

    }

    // Calling function

    identify(num1,num2);

    *****METHOD2 (using "return")*****

    function identify(a, b) {

    if (a > b) {

    return a;

    }

    else {

    return b;

    }

    }

    // Calling function
    let sum = identify(num1,num2);
    console.log(sum)

    Reply
  6. // Quiz by Codewithharry

    function compareNum(first_num, second_num) {

    switch (true) {

    case (first_num > second_num):
    console.log("First number is greater than second number");
    break;

    case (first_num < second_num):
    console.log("Second Number is Greater than first number");
    break;

    case (first_num == second_num):
    console.log("First number and second number has equal values");
    break;

    default :
    console.log("No condition matched");
    break;

    }

    }

    compareNum(5, 8);

    Reply
  7. //QUIZ: LESS THAN GREATER THAN:

    function compare(a,b){

    if(a>b){
    console.log(a + " is greater than " + b);
    }
    else{
    console.log(b + " is greater than " + a);

    }

    }
    compare(665,790 );

    //OUTPUT:
    790 is greater than 665

    Reply
  8. returnVal = sum(1,2,3); function ko chalate waqt b variable use karna par raha ha aur phr us variable ki value print ho rahe ha aur function k ander b return d; likha hoa ha to d ki value direct q print nh ho rahe ha balke function ko run karte waqt us se phle b variable bnana par rha ha ye methods ko change q kia hoa ha java scripting ma dosri languages ma ap direct d ki value agar print kroge phr b result apko mil jayga…

    Reply
  9. bhai ap is ma 1 galti kar rahe ho aur wo galti ye ha k jaha apne function ko create kiya two arguments pass kar k name, greettext uske bad function k ander console.log ki madad se print karwa rahe ho text ko aur phr neche jaha function ko call kar rahe ho aur us ma jo variable k name pass kar rahe ho wo name aur function k arguments k name dono k same rakh rahe ho jab k apko same name nh rakhna chaheye wo is liye take logo ko ye smj a sake k function k ander jo arguments pass kiye ha wo ik alag chez ha aur jo neche se variable k name bataye jaa rahe ha wo ik alag variables ha apke method se esa lag raha ha k ye dono same ha to clerifiction sahi nh ho pa rahe dono names ko different kar k use kare thanks 🙂

    Reply
  10. function greaterNumber(num1,num2,num3){

    if(num1 > num2 && num1 > num3){

    console.log(num1+"is Greater");

    }

    else if(num2 > num1 && num2 > num3 ){

    console.log(num2 + "is Greater");

    }

    else{

    console.log(num3 + "is Greater");

    }

    }

    greaterNumber(10,11,12);

    Reply
  11. function smaller(a,b){

    console.log("a is smaller than b");

    }

    function greater(a,b){

    console.log("a is greater than b");

    }

    function equal(a,b){

    console.log("a is equal than b");

    }

    let a = 20;

    let b= 3;

    if(a<b){

    smaller(a,b);

    }

    else if(a>b){

    greater(a,b);

    }

    else{

    equal(a,b);

    }

    Reply
  12. function greaterthan(a, b) {
    if (a > b) {
    console.log("max value is a");
    return a; // Return the maximum value
    } else if (a < b) {
    console.log("max value is b");
    return b; // Return the maximum value
    } else {
    console.log("Both values are equal");
    return a; // You can return either a or b here since they are equal
    }
    }

    let greater = greaterthan(3, 2);
    console.log(greater); // Print the result of the function call

    Reply
  13. function max (value1, value2) {

    if (value1 < value2)

    console.log(value2 + " is greater than " + value1);

    else

    console.log(value1 + " is greater than " + value2);

    }

    function min (value1, value2) {

    if (value1 < value2)

    console.log(value1 + " is less than " + value2);

    else

    console.log(value2 + " is less than " + value1);

    }

    let val1 = 7;

    let val2 = 47;

    max(val1, val2);

    min(val1, val2);

    Reply

Leave a Comment