Sort by

recency

|

267 Discussions

|

  • + 0 comments
    function performOperation(secondInteger, secondDecimal, secondString) {
        
        const firstInteger = 4;
        
        const firstDecimal = 4.0;
        
        const firstString = 'HackerRank ';
    
        
        console.log(firstInteger + Number(secondInteger))
    
        console.log(firstDecimal + parseFloat(secondDecimal))
     
        console.log(`${firstString}${secondString}`)
    }
    
  • + 0 comments
    var firstInteger = 4;
    
    // Declare a variable named 'firstDecimal' and initialize with floating-point value 4.0.
    var firstDecimal = 4.0;
    
    // Declare a variable named 'firstString' and initialize with the string "HackerRank".
    var firstString = 'HackerRank ';
    
    // Write code that uses console.log to print the sum of the 'firstInteger' and 'secondInteger' (converted to a Number        type) on a new line.
    firstInteger+=parseInt(secondInteger);
    firstDecimal+=parseFloat(secondDecimal);
    firstString+=secondString;
    console.log(firstInteger)
    console.log(firstDecimal)
    console.log(firstString)
    
  • + 0 comments

    The thing that annoys me, if this is a day 0 course.. how am I supposed to know about different methods?

  • + 1 comment

    console.log(firstInteger + +secondInteger) console.log(firstDecimal + +secondDecimal) console.log(firstString + secondString)

    • + 0 comments

      how this parsed into number or int? console.log(firstInteger + +secondInteger)

  • + 0 comments

    function performOperation(secondInteger, secondDecimal, secondString) { const firstInteger = 4; const firstDecimal = 4.0; const firstString = 'HackerRank ';

    const sumIntegers = firstInteger + Number(secondInteger);
    console.log(sumIntegers);
    
    const sumDecimals = firstDecimal + Number(secondDecimal);
    console.log(sumDecimals);
    
    const concatenatedString = firstString + secondString;
    console.log(concatenatedString);
    

    }