This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://jakearchibald.github.io/svgomg/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let person = { | |
| firstName:"Tarun", | |
| lastName:"Ranka" | |
| } | |
| const printFullName = function(newHown,state,country){ | |
| console.log(`${this.firstName} ${this.lastName} ${newHown} ${state} ${country}`); | |
| } | |
| const callFn = printFullName.bind(person); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function replace0by5(number){ | |
| if(number === 0){ | |
| return 5; | |
| } | |
| var result=number,decimalPlace=1; | |
| while(number > 0){ | |
| if(number % 10 === 0){ | |
| var newNumber = 5*decimalPlace; | |
| result += newNumber; | |
| } |
OlderNewer