let planets = [
{ name: 'mars', diameter: 6779 },
]
Testing filter by changing documentation file
firstname lastname x.y@htl.at
Topic 1
Topic 2
Topic 3
Matched element will be animated automatically!
Matched element will be animated automatically!
And move to the right position!
⬆️
⬆️
⬆️
let planets = [
{ name: 'mars', diameter: 6779 },
]
let planets = [
{ name: 'mars', diameter: 6779 },
{ name: 'earth', diameter: 12742 },
{ name: 'jupiter', diameter: 139820 }
]
let circumferenceReducer = ( c, planet ) => {
return c + planet.diameter * Math.PI;
}
let planets = [
{ name: 'mars', diameter: 6779 },
{ name: 'earth', diameter: 12742 },
{ name: 'jupiter', diameter: 139820 }
]
let c = planets.reduce( circumferenceReducer, 0 )
Introduction. (matched)
Introduction. (matched)
This will be shown instantly ⚡ (unmatched)
This animation…
This animation…
…will take 5 seconds! ⌚