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.
Day 0: Data Types
Day 0: Data Types
Sort by
recency
|
267 Discussions
|
Please Login in order to post a comment
The thing that annoys me, if this is a day 0 course.. how am I supposed to know about different methods?
console.log(firstInteger + +secondInteger) console.log(firstDecimal + +secondDecimal) console.log(firstString + secondString)
how this parsed into number or int? console.log(firstInteger + +secondInteger)
function performOperation(secondInteger, secondDecimal, secondString) { const firstInteger = 4; const firstDecimal = 4.0; const firstString = 'HackerRank ';
}