Strange behavior with JavaScript

JAVASCRIPTThere are numerous occasions where JavaScript behaves strangely.I love the frameworks written on top of javascript but do not prefer to write code in javascript.Please find below cases where javascript behave differently:Scenario 1As shown below, see addition and subtraction.11+1 //12'11'+1 //11111-1 //10'11'-1 //10 //What is hell? right?Scenario 2JavaScript is very loosely concerning data types.let name="Sukhpinder";setTimeout(function(){ … Continue reading Strange behavior with JavaScript

Why is JavaScript so hated?

Image by Alltechbuzz from PixabayThere are numerous occasions where JavaScript behaves strangely.I love the frameworks written on top of javascript but do not prefer to write code in javascript.Please find below cases where javascript behave differently:Scenario 1As shown below, see addition and subtraction.11+1 //12'11'+1 //11111-1 //10'11'-1 //10 //What is hell? right?Scenario 2JavaScript is very loosely concerning … Continue reading Why is JavaScript so hated?