Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

List

import { List } from "https://raw.githubusercontent.com/Hatscat/MetavaScript/main/index.ts";

put values in an array

@example
// returns "[1,2,3]"
List(1, 2, 3)
function List(...values: Printable[]): string;
§
List(...values: Printable[]): string
[src]

§Parameters

§
...values: Printable[] optional
[src]

§Return Type

§
string
[src]