Logo

Programming-Idioms

History of Idiom 169 > diff from v86 to v87

Edit summary for version 87 by dh:
[JS] require new item

Version 86

2020-12-28, 22:37:45

Version 87

2021-03-22, 04:19:53

Idiom #169 String length

Assign to integer n the number of characters of string s.
Make sure that multibyte characters are properly handled.
n can be different from the number of bytes of s.

Idiom #169 String length

Assign to integer n the number of characters of string s.
Make sure that multibyte characters are properly handled.
n can be different from the number of bytes of s.

Variables
n,s
Variables
n,s
Extra Keywords
size characters chars number runes
Extra Keywords
size characters chars number runes
Code
const n = s.length;
Code
const n = s.length;
var a =b;
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length