TKTutorials kept Simpleintutorials-kept-simple.hashnode.dev·Nov 11, 2020 · 5 min read'Single' vs "Double" quotes for strings in javascriptOften while coding using javascript, you would have come across the use of ‘single’ or “double” quotes for strings and would have wondered, if there is any real difference between the two and if there is, is there an advantage of using one type of qu...00
TKTutorials kept Simpleintutorials-kept-simple.hashnode.dev·Nov 11, 2020 · 4 min readHow to check if a value exists in an array using Javascript?We continue with Flexiple's tutorial series to explain the code and concept behind common use cases. In this article, we will solve for a specific case: To check if a value exists in an array. We then also look at its implementation in Javascript and...00
TKTutorials kept Simpleintutorials-kept-simple.hashnode.dev·Nov 9, 2020 · 6 min readHow to disable or enable buttons using javascript and jQuery?Let us learn how to enable or disable buttons using javascript and jQuery based on whether the input field is filled or empty. If you are a beginner or not very familiar with javascript or jQuery, we recommend that you go through the entire article. ...00
TKTutorials kept Simpleintutorials-kept-simple.hashnode.dev·Nov 7, 2020 · 5 min readHow to check if an array is empty using Javascript?We continue with Flexiple's tutorial series to explain the code and concept behind common use cases. In this article, we will solve for a specific case: To check if an array is empty using Javascript. Where can we use this? You might find this useful...01R
TKTutorials kept Simpleintutorials-kept-simple.hashnode.dev·Nov 6, 2020 · 4 min readCheck if a number is Prime or notIn this tutorial let us look at different methods to check if a number is prime or not in JavaScript and understand where exactly are these useful. A prime number is a natural number greater than 1 that cannot be obtained by multiplying two smaller n...00