1597780800
Let’s compare 2 strings str1
and str2
:
const str1 = 'Hello!';
const str2 = 'Hello!';
str1 === str2; // => true
Because str1
and str2
have the same characters, these strings are equal.
Is it always the case that 2 strings looking the same are equal? Let’s try another example:
const str1 = 'café';
const str2 = 'café';
str1 === str2; // => false
While str1
and str2
look the same, the comparison str1 === str2
evaluates to false
. How’s that possible?
Let’s detail into how to correctly compare strings in JavaScript. Before starting, I’m going to familiarize you with the terms of grapheme (a unit of writing) and combining character (specialized character that modify the look of a base character).
Looking at the following string, what can you say about its content?
const str1 = 'café';
You can easily see that it has 4 letters: lowercase c, lowercase a, lowercase f, and lowercase e with acute.
The way a user thinks about a character as a unit of writing is named grapheme. The example string café
contains 4 graphemes.
Here’s a formal definition of a grapheme:
Grapheme is a minimally distinctive unit of writing in the context of a particular writing system.
Ok, that’s all interesting, but how does it relate to the safe comparison of strings? Some graphemes can be rendered using different sequences of characters.
Particularly, there is a special set of characters named combining characters that modify the previous character to create new graphemes. Let’s detail combining characters.
#javascript #equality #string #programming
1624399200
JavaScript Strings
📺 The video in this post was made by Programming with Mosh
The origin of the article: https://www.youtube.com/watch?v=09BwruU4kiY&list=PLTjRvDozrdlxEIuOBZkMAK5uiqp8rHUax&index=6
🔥 If you’re a beginner. I believe the article below will be useful to you ☞ What You Should Know Before Investing in Cryptocurrency - For Beginner
⭐ ⭐ ⭐The project is of interest to the community. Join to Get free ‘GEEK coin’ (GEEKCASH coin)!
☞ **-----CLICK HERE-----**⭐ ⭐ ⭐
Thanks for visiting and watching! Please don’t forget to leave a like, comment and share!
#javascript #strings #javascript strings #javascript strings tutorial
1622207074
Who invented JavaScript, how it works, as we have given information about Programming language in our previous article ( What is PHP ), but today we will talk about what is JavaScript, why JavaScript is used The Answers to all such questions and much other information about JavaScript, you are going to get here today. Hope this information will work for you.
JavaScript language was invented by Brendan Eich in 1995. JavaScript is inspired by Java Programming Language. The first name of JavaScript was Mocha which was named by Marc Andreessen, Marc Andreessen is the founder of Netscape and in the same year Mocha was renamed LiveScript, and later in December 1995, it was renamed JavaScript which is still in trend.
JavaScript is a client-side scripting language used with HTML (Hypertext Markup Language). JavaScript is an Interpreted / Oriented language called JS in programming language JavaScript code can be run on any normal web browser. To run the code of JavaScript, we have to enable JavaScript of Web Browser. But some web browsers already have JavaScript enabled.
Today almost all websites are using it as web technology, mind is that there is maximum scope in JavaScript in the coming time, so if you want to become a programmer, then you can be very beneficial to learn JavaScript.
In JavaScript, ‘document.write‘ is used to represent a string on a browser.
<script type="text/javascript">
document.write("Hello World!");
</script>
<script type="text/javascript">
//single line comment
/* document.write("Hello"); */
</script>
#javascript #javascript code #javascript hello world #what is javascript #who invented javascript
1616670795
It is said that a digital resource a business has must be interactive in nature, so the website or the business app should be interactive. How do you make the app interactive? With the use of JavaScript.
Does your business need an interactive website or app?
Hire Dedicated JavaScript Developer from WebClues Infotech as the developer we offer is highly skilled and expert in what they do. Our developers are collaborative in nature and work with complete transparency with the customers.
The technology used to develop the overall app by the developers from WebClues Infotech is at par with the latest available technology.
Get your business app with JavaScript
For more inquiry click here https://bit.ly/31eZyDZ
Book Free Interview: https://bit.ly/3dDShFg
#hire dedicated javascript developers #hire javascript developers #top javascript developers for hire #hire javascript developer #hire a freelancer for javascript developer #hire the best javascript developers
1589255577
As a JavaScript developer of any level, you need to understand its foundational concepts and some of the new ideas that help us developing code. In this article, we are going to review 16 basic concepts. So without further ado, let’s get to it.
#javascript-interview #javascript-development #javascript-fundamental #javascript #javascript-tips
1597780800
Let’s compare 2 strings str1
and str2
:
const str1 = 'Hello!';
const str2 = 'Hello!';
str1 === str2; // => true
Because str1
and str2
have the same characters, these strings are equal.
Is it always the case that 2 strings looking the same are equal? Let’s try another example:
const str1 = 'café';
const str2 = 'café';
str1 === str2; // => false
While str1
and str2
look the same, the comparison str1 === str2
evaluates to false
. How’s that possible?
Let’s detail into how to correctly compare strings in JavaScript. Before starting, I’m going to familiarize you with the terms of grapheme (a unit of writing) and combining character (specialized character that modify the look of a base character).
Looking at the following string, what can you say about its content?
const str1 = 'café';
You can easily see that it has 4 letters: lowercase c, lowercase a, lowercase f, and lowercase e with acute.
The way a user thinks about a character as a unit of writing is named grapheme. The example string café
contains 4 graphemes.
Here’s a formal definition of a grapheme:
Grapheme is a minimally distinctive unit of writing in the context of a particular writing system.
Ok, that’s all interesting, but how does it relate to the safe comparison of strings? Some graphemes can be rendered using different sequences of characters.
Particularly, there is a special set of characters named combining characters that modify the previous character to create new graphemes. Let’s detail combining characters.
#javascript #equality #string #programming