A placeholder

1 min read

This post is a mere placeholder. More exciting posts will come!

For now here is the Fibonnacci sequence on Javascript:

Here’s a simple JavaScript function with our new styling:

function fibonacci(n) {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
}

console.log(fibonacci(10)); // Output: 55

And here is an average: \(S_n = \sum_{i=1}^n X_i\). And of course, a Gaussian integral:

\[ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} \]

Enjoy!


Cite this post
Edoardo Contente (2025). A placeholder. https://edoardocontente.com/posts/placeholder/

Enjoyed this article? Repost it on

If you like what I write, follow me @edoardocontente