We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
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)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Data Types
You are viewing a single comment's thread. Return to all comments →