Difference between revisions of "Values"
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
		
		
		
		
		
	
ZachStrout (talk | contribs)  (Created page with "<c>values</c> returns the values of a dictionary, or the characters of a string.(Returns any other value as-is.)  See also: Indexes  === Arguments ===  {| class="wikitable" |-...")  | 
				|||
| Line 20: | Line 20: | ||
[[Category:Intrinsic Functions]]  | [[Category:Intrinsic Functions]]  | ||
| − | |||
[[Category:String Methods]]  | [[Category:String Methods]]  | ||
[[Category:Map Methods]]  | [[Category:Map Methods]]  | ||
| − | |||
Revision as of 03:03, 19 March 2020
values returns the values of a dictionary, or the characters of a string.(Returns any other value as-is.)
See also: Indexes
Arguments
| Parameter Name | Default Value | Meaning | 
|---|---|---|
| self | any | object to get the values of | 
Usage Notes
values may be called with function syntax or dot syntax.
Example
"abc".values		// returns ["a", "b", "c"]