forum

How do you numerate your lists?

posted
Total Posts
13

How do you numerate your lists?

1
1
5.88%
1.
10
58.82%
1)
2
11.76%
other
4
23.53%
Total votes: 17
Topic Starter
DJruslan4ic
I'm just curious
lostsilver
i do it like 1: this is
2: an
3: example
and so on :)
Achromalia
i feel like theyre...

[1]
1)
1:
[#1]
#1)
#1:

...like that? i dont remember but they seem intuitive for now :) normally i just use little bullet points in text tho

+ but
+ it's not a way to numerate a list, so :p
Wimpy Cursed
It can change in certain situations, but I will most likely use 1.
WitherMite
[list=1]
[*]
[*]
[*]
[*]
[/list]
Patatitta
1-
2-
3-
Jangsoodlor
I.
II.
III.
IV.
SlowDumbLoser
enumerate(list_name)
GamlA
In writing: 1) and occasionally ①
In typing: 1.
Jangsoodlor

SlowDumbLoser wrote:

enumerate(list_name)
python programmer spotted
SlowDumbLoser

Jangsoodlor wrote:

SlowDumbLoser wrote:

enumerate(list_name)
python programmer spotted
🐍
MistressRemilia
A. Like this: 1. 2. 3.
2. Though sometimes 1), 2), 3) if it's mid-sentence.
D. And sometimes starting from zero.
WitherMite
cringe incoming
const array = [
    "Foo",
    "Apple",
    "ppy",
    "Your mother",
];

const enumeratedList =
    array.reduce((list, item, i) =>
        `${list}\n${i + 1}. ${item}`
    ,"");


console.log(enumeratedList);
Painful to write code on a phone
Please sign in to reply.

New reply