string.js 323 B

12345678
  1. export var stringDocs = {
  2. name: 'string',
  3. category: 'Construction',
  4. syntax: ['"text"', 'string(x)'],
  5. description: 'Create a string or convert a value to a string',
  6. examples: ['"Hello World!"', 'string(4.2)', 'string(3 + 2i)'],
  7. seealso: ['bignumber', 'boolean', 'complex', 'index', 'matrix', 'number', 'unit']
  8. };