David Páez

Testing JavaScript

Published: Sat Feb 10 2024
Topics:


Title

Scripts

Python script:

import pandas as pd

def saludar():
    print("Hola mundo")

JavaScript script:

function principal() {
    console.log("hola mundo")
}

principal();

Embedding JavaScript apps

This is a map:

Go up