ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

What is the best way to convert a string into an integer in terms of readability / performance, best practices? And why?

- Number Constructor ? (ex : Number("");)

- parseInt ? (ex: parseInt("");)

- Plus operator ? (ex: +"";)

- Bitwise >> (right shift) ? (ex: "" >>0;)

- Multiple (force cast) ? (ex: "" *1;)

- Bitwise NOT ? (ex: ~~"";)

- parseInt with base argument ? (ex: parseInt("",))

- Bitwise OR ? (ex: "" |0;)

- minus0 ? (ex: "" -0;)

user-image
تم إضافة السؤال من قبل Jonathan de Flaugergues , software engineer , Abbeal
تاريخ النشر: 2017/02/14
Amir Khan
من قبل Amir Khan , LAMP/PHP Web Programmer , GTA Web Developers

parseInt .. for why you may google it please

المزيد من الأسئلة المماثلة