fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@@ -0,0 +1,34 @@
---
title: String fromCharCode
localeTitle: سلسلة من CharCode
---
إرجاع الأسلوب `String.fromCharCode()` ثابت سلسلة تم إنشاؤها باستخدام التسلسل المحدد من قيم Unicode.
## بناء الجملة
`String.fromCharCode(num1[, ...[, numN]])
`
### المعلمات
**num1، ...، numN**
تسلسل من الأرقام التي تكون قيم Unicode.
[وصلة MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode) | [رابط MSDN](https://msdn.microsoft.com/en-us/LIBRary/wb4w0k66%28v=vs.94%29.aspx)
## وصف
هذا الأسلوب بإرجاع سلسلة وليس كائن سلسلة.
لأن `fromCharCode()` هو أسلوب ثابت من String ، فأنت تستخدمه دائمًا كـ `String.fromCharCode()` ، بدلاً من استخدامه كطريقة لعنصر String الذي قمت بإنشائه.
## أمثلة
`String.fromCharCode(65, 66, 67); // "ABC"
var test = String.fromCharCode(112, 108, 97, 105, 110);
document.write(test);
// Output: plain
`