Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Desestruturação de variáveis e constantes #558

Merged
merged 4 commits into from
Dec 12, 2023

Conversation

leonelsanchesdasilva
Copy link
Contributor

@leonelsanchesdasilva leonelsanchesdasilva commented Dec 12, 2023

Resolve #556

Variáveis:

    var a = { "prop1": "b" }
    var { prop1 } = a
    escreva(prop1)

Constantes:

    const a = { "prop1": "c" }
    const { prop1 } = a
    escreva(prop1)

@samuelrvg samuelrvg merged commit 99acb73 into principal Dec 12, 2023
1 check passed
@samuelrvg samuelrvg deleted the desestruturacao-leonel branch December 12, 2023 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Adicionar Desestruturação em delegua.
2 participants